aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/auth/auth_apache.php
Commit message (Collapse)AuthorAgeFilesLines
* - Documentation related changesMeik Sievertsen2005-04-091-11/+21
| | | | | | | | | | - added resend activation email dialog - fixed issue in session code - log failed/successful admin re-authentication/login - fixed simple forum dropdown box (used in mcp and posting) git-svn-id: file:///svn/phpbb/trunk@5114 89ea8834-ac86-4346-8a33-228a782c2dd0
* Remove need for session_ids for "allowed" bots, dump ↵Paul S. Owen2003-10-151-2/+2
| | | | | | user_founder/user_active in favour of user_type, new user_type, USER_IGNORE git-svn-id: file:///svn/phpbb/trunk@4603 89ea8834-ac86-4346-8a33-228a782c2dd0
* Updated the various "users of emailer", fixed issue(!) of jabber using the ↵Paul S. Owen2003-10-121-2/+2
| | | | | | email address as the uid, blah fixes, blah, blah di blah yakety smackety git-svn-id: file:///svn/phpbb/trunk@4583 89ea8834-ac86-4346-8a33-228a782c2dd0
* Add Id tagsPaul S. Owen2003-03-241-0/+3
| | | | git-svn-id: file:///svn/phpbb/trunk@3707 89ea8834-ac86-4346-8a33-228a782c2dd0
* Some changes to the returned data format + cleanupsPaul S. Owen2003-03-091-8/+16
| | | | git-svn-id: file:///svn/phpbb/trunk@3622 89ea8834-ac86-4346-8a33-228a782c2dd0
* Mostly changes to turn userdata into user->data, lang into user->lang + ↵Paul S. Owen2002-10-201-2/+2
| | | | | | bitstring 2nd format + inheritance for permission admin and various other updates/fixes/changes ... note that user->lang & user->theme isn't final git-svn-id: file:///svn/phpbb/trunk@2958 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fix errors, add admin output for ldapPaul S. Owen2002-08-071-3/+3
| | | | git-svn-id: file:///svn/phpbb/trunk@2836 89ea8834-ac86-4346-8a33-228a782c2dd0
* Auth plug-in, say thanks to Sergey KanareykinPaul S. Owen2002-08-061-0/+27
git-svn-id: file:///svn/phpbb/trunk@2828 89ea8834-ac86-4346-8a33-228a782c2dd0
n> . $phpEx); include_once($phpbb_root_path . 'includes/functions_user.' . $phpEx); include_once($phpbb_root_path . 'includes/functions_content.' . $phpEx); $this->container->set('groupposition.legend', new \phpbb\groupposition\legend( $this->db, $this->user )); $this->container->set('groupposition.teampage', new \phpbb\groupposition\teampage( $this->db, $this->user, $this->cache->get_driver() )); $this->container->set('group_helper', new \phpbb\group\helper( $this->getMockBuilder('\phpbb\auth\auth')->disableOriginalConstructor()->getMock(), $this->cache, $this->config, new \phpbb\language\language( new phpbb\language\language_file_loader($phpbb_root_path, $phpEx) ), new phpbb_mock_event_dispatcher(), new \phpbb\path_helper( new \phpbb\symfony_request( new phpbb_mock_request() ), new \phpbb\filesystem\filesystem(), $this->getMockBuilder('\phpbb\request\request')->disableOriginalConstructor()->getMock(), $phpbb_root_path, $phpEx ), $this->user )); $phpbb_dispatcher = new phpbb_mock_event_dispatcher; $phpbb_log = new \phpbb\log\dummy(); $this->get_test_case_helpers()->set_s9e_services(); // Now on to the actual test $group_id = false; group_create($group_id, GROUP_OPEN, 'test', 'test group', array()); // Add user 2 as group leader group_user_add($group_id, 2, false, false, false, true, false); // Add user 3 as pending group_user_add($group_id, 3, false, false, false, false, true); $this->assert_notifications( array( // user 3 pending notification array( 'item_id' => 3, // user_id of requesting join 'item_parent_id' => $group_id, 'user_id' => 2, 'notification_read' => 0, 'notification_data' => array( 'group_name' => 'test', ), ), ), array( 'user_id' => 2, ) ); // Approve user 3 joining the group group_user_attributes('approve', $group_id, array(3)); // user 3 pending notification should have been deleted $this->assert_notifications( array(), array( 'user_id' => 2, ) ); $this->assert_notifications( array( // user 3 approved notification array( 'item_id' => $group_id, // user_id of requesting join 'user_id' => 3, 'notification_read' => 0, 'notification_data' => array( 'group_name' => 'test', ), ), ), array( 'user_id' => 3, ) ); } }