Project

General

Profile

« Previous | Next » 

Revision 25

Added by Manuela over 6 years ago

some small corrections

View differences:

EN.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

  
......
399 399
$TEXT['FULL_NAME'] = 'Full Name';
400 400
$TEXT['FUNCTION'] = 'Function';
401 401
$TEXT['GROUP'] = 'Group';
402
$TEXT['GUEST'] = 'Guest';
402 403
$TEXT['HEADER'] = 'Header';
403 404
$TEXT['HEADING'] = 'Heading';
404 405
$TEXT['HEADING_CSS_FILE'] = 'Actual module file: ';
......
651 652
$TEXT['YES'] = 'Yes';
652 653

  
653 654
/* 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
}
655
if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }

Also available in: Unified diff