I just upgraded to PHP5 and now most of my stuff doesn't work :(
In the error log I am getting a string (this happens on every call to the language file)
The language file is being called by
The string that I am using is in the pages are
Here is a snippet from the en.php
If anyone can see the error here I would greatly appreciate it. My next task will be to find out why all the dates have reverted to 31.12.1969
In the error log I am getting a string (this happens on every call to the language file)
Code:
PHP Notice: Use of undefined constant Welcome - assumed 'Welcome' in /includes/en.php on line 206
Code:
include $include_path."en.php";
The string that I am using is in the pages are
Code:
echo "{$t_admin['Welcome']}";
Code:
$t_admin[Welcome] = "Welcome";
If anyone can see the error here I would greatly appreciate it. My next task will be to find out why all the dates have reverted to 31.12.1969
Comment