cleanup and fixes for release of 2.0.1 without demo client

Dieser Commit ist enthalten in:
oldperl 2017-06-10 09:37:15 +00:00
Ursprung f2d779114c
Commit 69f0f1ec54
3 geänderte Dateien mit 3 neuen und 3 gelöschten Zeilen

Datei anzeigen

@ -66,7 +66,7 @@ class Contenido_Navigation {
/** /**
* Constructor. Loads the XML language file using XML_Doc. * Constructor. Loads the XML language file using XML_Doc.
*/ */
function Contenido_Navigation() { function __construct() {
global $cfg, $belang; global $cfg, $belang;
$this->xml = new XML_Doc(); $this->xml = new XML_Doc();

Datei anzeigen

@ -83,7 +83,7 @@ class XML_doc {
/** /**
* Class Construcor * Class Construcor
*/ */
function XML_doc() { function __construct() {
global $encoding, $lang; global $encoding, $lang;
$this->sys_encoding = $encoding[$lang]; $this->sys_encoding = $encoding[$lang];

Datei anzeigen

@ -117,7 +117,7 @@ $perm->load_permissions();
$xml = new XML_doc; $xml = new XML_doc;
$tpl = new Template; $tpl = new Template;
$nav = new Contenido_Navigation; $nav = new Contenido_Navigation();
rereadClients(); rereadClients();