Bugs item #1435507, was opened at 2006-02-20 15:54
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=538274&aid=1435507&group_id=73598
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Greg Morgan (dr_kludge)
Assigned to: Nobody/Anonymous (nobody)
Summary: Anonymous user Rob posts a php5 fix
Initial Comment:
Please see
https://sourceforge.net/forum/message.php?msg_id=3585190
. I have copied it here. As noted below Rob says that
the module works correctly on php 5 now. I have not
checked. Version information is not available. I will
ask.
Greg
I installed the listings module on a new install of
phpwebsite and php5.
It threw general error messages until I changed lines
36 and 37 of mod/phpwslistings/class.runtime.php from
function AgentCheck(){
$this->Listing_block = new SEILER_ListingManager();
$this->Listing_block->AgentCheck();
}
}
to
function AgentCheck(){
$result->Listing_block = new SEILER_ListingManager();
$result->Listing_block->AgentCheck();
}
}
?>
?>
And like that it works perfectly.
:)
Rob
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=538274&aid=1435507&group_id=73598
|