Browse Source

Fix install for MySQL < 5.5.3

pull/40/head
Michael Foster 11 years ago
parent
commit
e35467e3b9
  1. 2
      install.php

2
install.php

@ -619,7 +619,7 @@ if ($step == 0) {
sql_open();
if (mysql_version() < 50503)
$sql = str_replace('utf8', 'utf8mb4', $sql);
$sql = preg_replace('/(CHARSET=|CHARACTER SET )utf8mb4/', '$1utf8', $sql);
// This code is probably horrible, but what I'm trying
// to do is find all of the SQL queires and put them

Loading…
Cancel
Save