Revision 12
Added by Manuela about 7 years ago
branches/main/admin/interface/version.php | ||
---|---|---|
48 | 48 |
|
49 | 49 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
50 | 50 |
if(!defined('VERSION')) { define('VERSION', '2.10.1-dev'); } |
51 |
if(!defined('REVISION')) { define('REVISION', '11'); }
|
|
51 |
if(!defined('REVISION')) { define('REVISION', '12'); }
|
|
52 | 52 |
if(!defined('SP')) { define('SP', ''); } |
53 | 53 |
|
branches/main/framework/CoreAutoloader.php | ||
---|---|---|
48 | 48 |
private static $aReplacements = []; |
49 | 49 |
|
50 | 50 |
private static $aTransNs = [ |
51 |
'bin/interfaces' => 'framework', |
|
52 |
'bin' => 'framework', |
|
53 |
'addon' => 'modules', |
|
54 |
'acp' => 'admin' |
|
51 |
// packet translations |
|
52 |
'vendor/jscalendar' => 'include/jscalendar', |
|
53 |
'bin/interfaces' => 'framework', |
|
54 |
// global translations |
|
55 |
'bin' => 'framework', |
|
56 |
'addon' => 'modules', |
|
57 |
'acp' => 'admin', |
|
58 |
'vendor' => 'include', |
|
55 | 59 |
]; |
56 | 60 |
|
57 | 61 |
public static function autoLoad($sClassName) |
Also available in: Unified diff
added new namespace 'vendor\jscalendar'