Rich Cloutier
2010-05-16 07:58:33 UTC
I found a couple more errors, this time in dosearch.php.
Line 166 reads:
$rowstyle = "background-color: dde; $color: black;";
It should read:
$rowstyle = "background-color: dde; color: black;";
Also, on line 163, $removed is not defined (actually, it's defined in an
if statement.) So while you were initializing variables around line
143-144, I added:
$removed = 'n'; // Define and initialize
Apparently $id is already defined elsewhere, as it didn't throw a notice.
Rich
Line 166 reads:
$rowstyle = "background-color: dde; $color: black;";
It should read:
$rowstyle = "background-color: dde; color: black;";
Also, on line 163, $removed is not defined (actually, it's defined in an
if statement.) So while you were initializing variables around line
143-144, I added:
$removed = 'n'; // Define and initialize
Apparently $id is already defined elsewhere, as it didn't throw a notice.
Rich