View Single Post
Old 02-26-2013, 12:16 PM   PM User | #10
Pcfr43k
New Coder

 
Join Date: Jan 2010
Location: The Netherlands
Posts: 53
Thanks: 10
Thanked 0 Times in 0 Posts
Pcfr43k is an unknown quantity at this point
Thumbs up

Quote:
Originally Posted by Arcticwarrio View Post
YOU STILL HAVE 1 = IN THE MENU.TXT LINK YOU POSTED:

PHP Code:
foreach($menuxml as $k1 => $v1) {
    foreach(
$menufile as $k2 => $v2) {
        if (
$v1 $v2) {
                unset(
$menuxml[$k1]);
        }
    }

.

if ($v1 = $v2) { should be if ($v1 == $v2) {
Tnx!, I had overwritten it XD.
It works now
Pcfr43k is offline   Reply With Quote