Added hint for database name. Similar to ftp and db username feature.

GLOBAL.DB_DBNAME_PREFIX contains user prefix, by default it is set to 'admin_' and replaced by current value inside template
This commit is contained in:
dmitry.malishev 2013-07-18 14:25:50 +03:00
parent 4d0591c343
commit c04b47d5df
5 changed files with 50 additions and 3 deletions

View file

@ -43,8 +43,9 @@ var Error = {FATAL: 1, WARNING: 0, NORMAL: -1};
// GLOBAL SETTINGS
//
GLOBAL = {};
GLOBAL.FTP_USER_PREFIX = 'admin_';
GLOBAL.DB_USER_PREFIX = 'admin_';
GLOBAL.FTP_USER_PREFIX = 'admin_';
GLOBAL.DB_USER_PREFIX = 'admin_';
GLOBAL.DB_DBNAME_PREFIX = 'admin_';
GLOBAL.AJAX_URL = '';
/**