Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRouslan Placella <rouslan@placella.com>2012-04-06 01:58:57 +0400
committerRouslan Placella <rouslan@placella.com>2012-04-06 01:58:57 +0400
commitf15d0fd1d8177a53302b09118b7463d4c2c328a8 (patch)
tree85c5d2b336d0026ef93f62997e500a335c0a1337 /main.php
parent7dbec097494ef0c5300342f3166861bc355015dc (diff)
Removed most <noscript> tags and made JS mandatory to login
Diffstat (limited to 'main.php')
-rw-r--r--main.php10
1 files changed, 0 insertions, 10 deletions
diff --git a/main.php b/main.php
index 9e949fff3a..15bcdf250f 100644
--- a/main.php
+++ b/main.php
@@ -112,7 +112,6 @@ if ($server > 0
. ' </label>' . "\n"
. PMA_generateCharsetDropdownBox(PMA_CSDROPDOWN_COLLATION, 'collation_connection', 'select_collation_connection', $collation_connection, true, 4, true)
- . ' <noscript><input type="submit" value="' . __('Go') . '" /></noscript>' . "\n"
. ' </form>' . "\n"
. ' </li>' . "\n";
} // end of if ($server > 0 && !PMA_DRIZZLE)
@@ -331,15 +330,6 @@ if ($server > 0) {
}
/**
- * Show notice when javascript support is missing.
- */
-echo '<noscript>';
-$message = PMA_Message::notice(__('Javascript support is missing or disabled in your browser, some phpMyAdmin functionality will be missing. For example navigation frame will not refresh automatically.'));
-$message->isError(true);
-$message->display();
-echo '</noscript>';
-
-/**
* Warning about different MySQL library and server version
* (a difference on the third digit does not count).
* If someday there is a constant that we can check about mysqlnd, we can use it instead