From 5e237d6a8eb8ef6121341d8fe4be6e73aef3a6a9 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Sat, 28 Feb 2004 22:31:15 +0000 Subject: [PATCH] fixed typo --- etemplate/inc/class.db_tools.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etemplate/inc/class.db_tools.inc.php b/etemplate/inc/class.db_tools.inc.php index 3220ad2c11..f809e7bbd5 100644 --- a/etemplate/inc/class.db_tools.inc.php +++ b/etemplate/inc/class.db_tools.inc.php @@ -942,7 +942,7 @@ if (($add = !isset($old[$name]['fd'][$col])) || // column $col added serialize($old_norm['fd'][$col]) != serialize($new_norm['fd'][$col])) // column definition altered { - $update .= "\t\t".($do_refresh ? "/* done by RefreshTable() anyway\n\t\t". : ''). + $update .= "\t\t".($do_refresh ? "/* done by RefreshTable() anyway\n\t\t" : ''). "\$GLOBALS['phpgw_setup']->oProc->".($add ? 'Add' : 'Alter')."Column('$name','$col',"; $update .= $this->write_array($col_def,2) . ');' . ($do_refresh ? '*/' : '') . "\n"; }