diff --git a/config/rollover.php b/config/rollover.php index 0b0d3281..f4a56585 100644 --- a/config/rollover.php +++ b/config/rollover.php @@ -56,7 +56,6 @@ function roll($currentfairyear, $newfairyear, $table, $fields) { - echo "SELECT * FROM $table WHERE year='$currentfairyear'"; $q=mysql_query("SELECT * FROM $table WHERE year='$currentfairyear'"); echo mysql_error(); $names = '`'.join('`,`', $fields).'`'; @@ -66,7 +65,6 @@ $vals .= ",'".mysql_escape_string($r[$f])."'"; } - print("INSERT INTO $table(`year`,$names) VALUES ('$newfairyear'$vals)
"); mysql_query("INSERT INTO $table(`year`,$names) VALUES ('$newfairyear'$vals)"); echo mysql_error(); }