Removed the column containing the database variable names from the Important Dates table. Ref:Bug 47

This commit is contained in:
justin 2006-03-29 00:31:07 +00:00
parent e97e22c6e3
commit 4d6238c7c6

View File

@ -48,7 +48,7 @@
$q=mysql_query("SELECT * FROM dates WHERE year='".$config['FAIRYEAR']."' ORDER BY date");
while($r=mysql_fetch_object($q))
{
echo "<tr><td>$r->name</td><td>".i18n($r->description)."</td><td><input type=\"text\" name=\"savedates[$r->id]\" value=\"$r->date\" /></td></tr>";
echo "<tr><td>".i18n($r->description)."</td><td><input type=\"text\" name=\"savedates[$r->id]\" value=\"$r->date\" /></td></tr>";
}