|
From: Jerry B. <je...@st...> - 2001-03-11 01:08:30
|
Not sure if anyone's caught this yet, but there's a problem in index.php =
in cvs that prevents the main_page_content and articles from being =
displayed. Here's a quick fix to the mysql check:
<after>
$result =3D mysql_query("SELECT sids, aid, title, time, hometext, =
bodytext, comments, counter, topic, informant, notes FROM stories ORDER =
BY sid DESC limit $storynum")=20
<add>
or die(mysql_errno(). ": " . mysql_error() . "<br />"); =20
<delete>
if($result) echo mysql_errno(). ": ".mysql_error(). "<br />"; exit(); =
=20
I apologize if this was part of a larger change that hasn't been fully =
committed yet.
Jerry=20
www.syslog.org
|