removed unnecessary ';' in query in register_hooks, MaxDB treats them as SQL-errors

This commit is contained in:
Ralf Becker 2004-08-04 10:30:47 +00:00
parent 446d92f9b0
commit ccb4700624

View File

@ -234,7 +234,7 @@
$filename = "hook_$hook.inc.php";
}
$this->db->query("INSERT INTO phpgw_hooks (hook_appname,hook_location,hook_filename)".
" VALUES ('$appname','$location','$filename');");
" VALUES ('$appname','$location','$filename')");
}
return True;
}