08-03-2008, 08:04 PM
Hi all,
I was watching through the 1.4 inc/functions.php file in order to make modification for this new version and I find something strange...
In the last release of 1.2 series, the 1.2.14, this line has been fixed :
To this :
(it's line 852)
But in the functions.php file of the 1.4 release, the line is this yet :
I imagine the modification that was made on 1.2.14 file was forgotten and not included in the 1.4 file, so I report it.
Good evening (or good morning / afternoon anywhere you are).
I was watching through the 1.4 inc/functions.php file in order to make modification for this new version and I find something strange...
In the last release of 1.2 series, the 1.2.14, this line has been fixed :
Code:
if($uid != $mybb->user['uid'])To this :
Code:
if($uid != 0 && $uid != $mybb->user['uid'])But in the functions.php file of the 1.4 release, the line is this yet :
Code:
if($uid != $mybb->user['uid'])I imagine the modification that was made on 1.2.14 file was forgotten and not included in the 1.4 file, so I report it.
Good evening (or good morning / afternoon anywhere you are).

This is not an important change anyway