5
If you go to jobs/admin/index.php around line 387 and find the function:
function IndexResumeView
In that function around line 395 find this:
$result = $xoopsDB->query("select lid, cid, title, status, exp, expire, private, tel, salary, typeprice, date, email, submitter, usid, town, state, valid, premium, resume from ".$xoopsDB->prefix("jobs_resume")." WHERE valid='No' AND lid='$lid'");
Remove the 'premium,'
Also around line 401 find this line:
list($lid, $cid, $title, $status, $exp, $expire, $private, $tel, $salary, $typeprice, $date, $email, $submitter, $usid, $town, $state, $valid, $premium, $resume) = $xoopsDB->fetchRow($result);
also remove '$premium,'
Then around line 415 find this line:
$premium = $myts->htmlSpecialChars($premium);
comment it out like this:
//$premium = $myts->htmlSpecialChars($premium);
or delete it.
That should fix it. I will change the download tonight.
Thanks,
John