I hate stupid bugs, still fixing #276

This commit is contained in:
Florian Aders (EleRas)
2010-06-16 12:38:53 +00:00
parent 36efb04f86
commit cc7610d436

View File

@@ -196,7 +196,7 @@ if($page == 'customers'
// Delete all waiting "create user" -tasks for this user, #276
// Note: the WHERE selects part of a serialized array, but it should be safe this way
$db->query("DELETE FROM `" . TABLE_PANEL_TASKS . "` WHERE `type` = '2' AND `data` LIKE '%;\"" . $db->escape($result['loginname']) . "\"%;';");
$db->query("DELETE FROM `" . TABLE_PANEL_TASKS . "` WHERE `type` = '2' AND `data` LIKE '%:\"" . $db->escape($result['loginname']) . "\";%';");
// remove everything APS-related, #216
$apsresult = $db->query("SELECT `ID` FROM `".TABLE_APS_INSTANCES."` WHERE `CustomerID`='".(int)$id."'");