diff --git a/_compile.php b/_compile.php index cc2bdf96..e9b93716 100644 --- a/_compile.php +++ b/_compile.php @@ -176,8 +176,8 @@ if ($_COOKIE["lang"]) { $file = preg_replace_callback("~lang\\('((?:[^\\\\']+|\\\\.)*)'([,)])~s", 'lang_ids', $file); } $replace = 'preg_replace("~\\\\\\\\?.*~", "", $_SERVER["REQUEST_URI"]) . "?file=\\0&version=' . $VERSION; -$file = preg_replace('~default\\.css|functions\\.js|favicon\\.ico|(up|down|plus|cross)\\.gif~', '', $file); -$file = preg_replace('~arrow\\.gif~', '" . ' . $replace, $file); +$file = preg_replace('~default\\.css|functions\\.js|favicon\\.ico|(plus|cross)\\.gif~', '', $file); +$file = preg_replace('~(up|down|arrow)\\.gif~', '" . ' . $replace, $file); $file = str_replace('error_reporting(E_ALL & ~E_NOTICE);', 'error_reporting(E_ALL & ~E_NOTICE); if (isset($_GET["file"])) { header("Expires: " . gmdate("D, d M Y H:i:s", time() + 365*24*60*60) . " GMT"); diff --git a/changes.txt b/changes.txt index 3156526b..067e8012 100644 --- a/changes.txt +++ b/changes.txt @@ -7,6 +7,7 @@ Version checker Separate JavaScript functions Always use the default style before the external one Always try to use the syntax highlighter +Fix FOUND_ROWS() in SQL command Simplify order in select phpMinAdmin 1.10.1: diff --git a/include/editing.inc.php b/include/editing.inc.php index 7337e5fd..f5722685 100644 --- a/include/editing.inc.php +++ b/include/editing.inc.php @@ -154,8 +154,10 @@ function edit_fields($fields, $collations, $type = "TABLE", $allowed = 0) { - - +\n"; +echo "\n"; +?> ' . htmlspecialchars($key) . ''; - echo ''; + echo '' . htmlspecialchars($key) . ''; } echo "\n"; } diff --git a/user.inc.php b/user.inc.php index b7dc681c..75be7523 100644 --- a/user.inc.php +++ b/user.inc.php @@ -162,7 +162,7 @@ foreach (array( $name = '"grants[' . $i . '][' . htmlspecialchars(strtoupper($privilege)) . ']"'; $value = $grant[strtoupper($privilege)]; if ($context == "Server Admin" && $object != (isset($grants["*.*"]) ? "*.*" : "")) { - echo " "; + echo ""; } elseif (isset($_GET["grant"])) { echo ""; } else {