changeset 549:e5732b25c839

Comment out a debug print.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 16 Dec 2013 01:26:51 +0200
parents b3e9c3eedc23
children aab614fb7422
files managedb.php
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/managedb.php	Mon Dec 16 01:25:44 2013 +0200
+++ b/managedb.php	Mon Dec 16 01:26:51 2013 +0200
@@ -424,7 +424,7 @@
 
 function stCreateOneTable($dbh, $name, $schema)
 {
-  echo "CREATE TABLE ".$name ." (".$schema.")\n";
+//  echo "CREATE TABLE ".$name ." (".$schema.")\n";
   return (stDBExecSQL($dbh, "CREATE TABLE ".$name." (".$schema.")") !== FALSE) ? TRUE : FALSE;
 }