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:
authorSebastian Mendel <cybot_tm@users.sourceforge.net>2007-10-04 13:22:50 +0400
committerSebastian Mendel <cybot_tm@users.sourceforge.net>2007-10-04 13:22:50 +0400
commit40b3ce9fd191d00159c601b986f92291a4bfccb5 (patch)
tree6c15bf472e002dc3514b045153588bb17c497cb9 /db_create.php
parente9f1ed82c6fdb783f98884d670097175df03e484 (diff)
use array to define included JavaScript libraries
Diffstat (limited to 'db_create.php')
-rw-r--r--db_create.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db_create.php b/db_create.php
index a690643167..3606a673a1 100644
--- a/db_create.php
+++ b/db_create.php
@@ -9,7 +9,7 @@
* Gets some core libraries
*/
require_once './libraries/common.inc.php';
-$js_to_run = 'functions.js';
+$GLOBALS['js_include'][] = 'functions.js';
require_once './libraries/mysql_charsets.lib.php';
PMA_checkParameters(array('db'));