Ignore:
Timestamp:
Feb 22, 2011, 11:32:59 AM (13 years ago)
Author:
patdenice
Message:

Use ENGINE=MyISAM for table creation.
Compatibility with AMM.
Compatibility with $confrandom_index_redirect parameter.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/AdditionalPages/maintain.inc.php

    r9323 r9345  
    2323INDEX (pos) ,
    2424INDEX (lang))
    25 DEFAULT CHARACTER SET utf8;';
    26     pwg_query($query);
     25DEFAULT CHARACTER SET utf8';
     26    if ('mysql' == $conf['dblayer'])
     27    {
     28      $query .= ' ENGINE=MYISAM';
     29    }
     30    pwg_query($query.';');
    2731  }
    2832
Note: See TracChangeset for help on using the changeset viewer.