fixed a typo

This commit is contained in:
Silke Meyer 2015-01-31 15:23:36 +01:00
parent a485653d6b
commit 89946b8660
1 changed files with 1 additions and 1 deletions

View File

@ -278,7 +278,7 @@ function admin_page_site_post(&$a){
$q = sprintf("UPDATE %s SET %s;", $table_name, $upds); $q = sprintf("UPDATE %s SET %s;", $table_name, $upds);
$r = q($q); $r = q($q);
if (!$r) { if (!$r) {
notice( "Falied updating '$table_name': " . $db->error ); notice( "Failed updating '$table_name': " . $db->error );
goaway($a->get_baseurl(true) . '/admin/site' ); goaway($a->get_baseurl(true) . '/admin/site' );
} }
} }