|
14 | 14 |
|
15 | 15 | // for modules
|
16 | 16 | define('IN_ASB', true);
|
17 |
| -define('ASB_MODULES_DIR', MYBB_ROOT . 'inc/plugins/asb/modules'); |
18 |
| -define('ASB_VERSION', '3.1.14'); |
| 17 | +define('ASB_MODULES_DIR', MYBB_ROOT.'inc/plugins/asb/modules'); |
| 18 | +define('ASB_VERSION', '3.1.15'); |
19 | 19 | define('ASB_CUSTOM_VERSION', '2.0');
|
20 | 20 | define('ASB_SCRIPT_VERSION', '2.0');
|
21 | 21 |
|
22 | 22 | // register custom class autoloader
|
23 | 23 | spl_autoload_register('asbClassAutoload');
|
24 | 24 |
|
25 | 25 | // some basic functions used everywhere
|
26 |
| -require_once MYBB_ROOT . 'inc/plugins/asb/functions.php'; |
| 26 | +require_once MYBB_ROOT.'inc/plugins/asb/functions.php'; |
27 | 27 |
|
28 | 28 | // load the install/admin routines only if in ACP.
|
29 | 29 | if (defined('IN_ADMINCP')) {
|
30 |
| - require_once MYBB_ROOT . 'inc/plugins/asb/acp.php'; |
| 30 | + require_once MYBB_ROOT.'inc/plugins/asb/acp.php'; |
31 | 31 | } else {
|
32 |
| - require_once MYBB_ROOT . 'inc/plugins/asb/forum.php'; |
| 32 | + require_once MYBB_ROOT.'inc/plugins/asb/forum.php'; |
33 | 33 | }
|
34 | 34 |
|
35 |
| - /** |
36 |
| - * class autoloader |
37 |
| - * |
38 |
| - * @param string the name of the class to load |
39 |
| - */ |
40 |
| -function asbClassAutoload($className) { |
41 |
| - $path = MYBB_ROOT . "inc/plugins/asb/classes/{$className}.php"; |
| 35 | +/** |
| 36 | + * class autoloader |
| 37 | + * |
| 38 | + * @param string the name of the class to load |
| 39 | + */ |
| 40 | +function asbClassAutoload($className) |
| 41 | +{ |
| 42 | + $path = MYBB_ROOT."inc/plugins/asb/classes/{$className}.php"; |
42 | 43 |
|
43 | 44 | if (file_exists($path)) {
|
44 | 45 | require_once $path;
|
|
0 commit comments