Changeset 294 for application.register/files/lib/action/DisableApplicationRegisterNotificationsAction.class.php
- Timestamp:
- 03/08/08 17:13:16 (5 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
application.register/files/lib/action/DisableApplicationRegisterNotificationsAction.class.php
r275 r294 16 16 parent::execute(); 17 17 18 $sql = "UPDATE wcf".WCF_N."_group_application 18 $sql = "UPDATE wcf".WCF_N."_group_application_notification 19 19 SET disableNotification = '1' 20 20 WHERE groupID IN ( 21 21 SELECT groupID 22 22 FROM wcf".WCF_N."_group_leader 23 WHERE userID = ".WCF::getUser()->userID."23 WHERE userID = '".WCF::getUser()->userID."' 24 24 ) 25 AND applicationStatus = '0'25 AND userID = '".WCF::getUser()->userID."' 26 26 "; 27 27 WCF::getDB()->sendQuery($sql);
