mirror of
https://github.com/myvesta/vesta
synced 2025-07-12 16:13:34 -07:00
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:
parent
4d0591c343
commit
c04b47d5df
5 changed files with 50 additions and 3 deletions
|
@ -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 = '';
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue