You appear to have the version with a slight glitch in the top navigation menu, I think you'll see the bottom add site link works..
Edit /themes/X/navbar.top.php where X is the theme you use , note the subtle change made below to the "if ($PID" line
| Code: |
$html .= "href=\"$gl[BasePath]/directory/add.html";
if ($usesession == "yes"){$html .= "$and" . session_name() . "=". session_id() . "";$and ="&";}
if ($PID > "0"){$html .= $and."PID=" . $PID . "\"";}
$html .= "\">Add A Site</a></td>";
|
The preselected category issue.. well thats just stupidity on my part
Edit include/add.php
Locate the lines that read ...
| Code: |
$htmlsrc .= drop_cats($PID, 0, "", $cats);
$htmlsrc .= $cats;
|
There are 2 "if { }" blocks above that, just remove them, or comment them out.
If it still doesnt work, make sure you have this line, near the top of the file
| Code: |
$PID = mysql_escape_string($_GET['PID']);
|