left in a debugging override

This commit is contained in:
Ryan Walberg 2012-11-27 17:52:12 +00:00
parent 7878ff6082
commit e9eb8fc8e0

View file

@ -25,7 +25,7 @@ $stmt = dbh($opt)->prepare("SELECT COUNT(*) AS user_count FROM {$opt["table_pref
$stmt->execute();
if ($row = $stmt->fetch()) {
$user_count = $row["user_count"];
if (false && $user_count != 0) {
if ($user_count != 0) {
die("Database has already been set up.");
}
}