From 1a5bfe70dd4fd9c71c77e5c7bf6acfd64cd9689c Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 13 Oct 2005 14:20:40 +0000 Subject: [PATCH] fixed syntax error, thanks to Giuseppe Smaniotto --- infolog/inc/hook_deleteaccount.inc.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/infolog/inc/hook_deleteaccount.inc.php b/infolog/inc/hook_deleteaccount.inc.php index 5901ac32d1..f886176eed 100644 --- a/infolog/inc/hook_deleteaccount.inc.php +++ b/infolog/inc/hook_deleteaccount.inc.php @@ -15,8 +15,7 @@ { $info =& CreateObject('infolog.soinfolog'); - $info->change_delete_owner((int)$GLOBALS['hook_values']['account_id']), - intval($_POST['new_owner'])); + $info->change_delete_owner((int)$GLOBALS['hook_values']['account_id'],(int)$_POST['new_owner']); unset($info); }