Revision 25
Added by Manuela about 8 years ago
| NO.php | ||
|---|---|---|
| 31 | 31 |
//declare(strict_types = 1); |
| 32 | 32 |
//declare(encoding = 'UTF-8'); |
| 33 | 33 |
|
| 34 |
if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 34 |
if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 35 | 35 |
// Define that this file is loaded |
| 36 | 36 |
if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
|
| 37 | 37 |
|
| ... | ... | |
| 651 | 651 |
$TEXT['YES'] = 'Ja'; |
| 652 | 652 |
|
| 653 | 653 |
/* include old languages format */ |
| 654 |
if(file_exists(WB_PATH.'/languages/old.format.inc.php')) |
|
| 655 |
{
|
|
| 656 |
include(WB_PATH.'/languages/old.format.inc.php'); |
|
| 657 |
} |
|
| 654 |
if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
|
|
Also available in: Unified diff
some small corrections