Show
Ignore:
Timestamp:
03/08/08 17:13:16 (5 years ago)
Author:
MDMAN
Message:

Einige Änderungen der MySQL-Auslesung verändert.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • application.register/files/lib/action/DisableApplicationRegisterNotificationsAction.class.php

    r275 r294  
    1616        parent::execute(); 
    1717                 
    18                 $sql = "UPDATE          wcf".WCF_N."_group_application 
     18                $sql = "UPDATE          wcf".WCF_N."_group_application_notification 
    1919                                SET             disableNotification = '1' 
    2020                                WHERE           groupID IN ( 
    2121                                                        SELECT  groupID 
    2222                                                        FROM    wcf".WCF_N."_group_leader 
    23                                                         WHERE   userID = ".WCF::getUser()->userID." 
     23                                                        WHERE   userID = '".WCF::getUser()->userID."' 
    2424                                                        ) 
    25                                 AND             applicationStatus = '0'                          
     25                                AND             userID = '".WCF::getUser()->userID."'                            
    2626                                "; 
    2727                WCF::getDB()->sendQuery($sql);