aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/memberlist.php
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #843 from nickvergessen/feature/new-tz-handlingNils Adermann2012-07-191-1/+2
|\ | | | | Feature/new tz handling
| * Merge branch 'feature/new-tz-handling' of https://github.com/p/phpbb3 into ↵Joas Schilling2012-06-041-1/+2
| |\ | | | | | | | | | | | | | | | | | | | | | | | | feature/new-tz-handling Conflicts: phpBB/includes/functions_profile_fields.php phpBB/includes/session.php phpBB/install/database_update.php
| | * [feature/new-tz-handling] Remove code using legacy timezone properties.Chris Smith2012-03-141-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Code accessing the legacy user::$timezone and user::$dst properties has been removed and replaced with code utilising user::create_datetime(). Changed by Oleg: in viewtopic, memberlist and index use getTimestamp() + getOffset(). We show members that have birthdays on the specified date. getTimestamp() returns the current date in UTC. We add getOffset() to obtain the current local time in the viewing user's timezone. Then we find members having birthday on this date. Changed by Oleg again: Take leap year status out of the datetime object we have, this seems like it should work as one would expect. PHPBB3-9558
* | | [feature/pagination-as-list] New parameter for name of start varDrae2012-07-181-1/+1
| | | | | | | | | | | | | | | | | | | | | Add a new parameter to hold the name of the start variable. This fulfills ticket PHPBB3-8535. PHPBB3-10968
* | | [feature/pagination-as-list] Updates for nils commentsDrae2012-07-181-2/+2
| | | | | | | | | | | | | | | | | | | | | Re-remove deprecated functions, change on_page to phpbb_on_page, add null returns, remove globals and pass as params. PHPBB3-10968
* | | [feature/pagination-as-list] Rename and deprecate functionsDrae2012-07-181-1/+1
| | | | | | | | | | | | | | | | | | | | | Returned and marked deprecated topic_generate_pagination. Rename new function in line with coding guidelines. PHPBB3-10968
* | | [feature/pagination-as-list] Various fixes and improvementsDrae2012-07-181-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Extracted common template code for prosilver as per subsilver2. Various other fixups and oversight corrections, changed name of the "new" template function and re-introduced existing version. Altered on_page to compensate for removal of some templating vars from pagination routine. PHPBB3-10968
* | | [ticket/10968] Render pagination within the templateDrae2012-07-181-1/+2
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | Since phpBB 2 pagination has been rendered mostly within the source. This limits just what designers can do with pagination. The current form is also questionable in terms of "best practice". The aim is to move rendering completely to the template via the use of a block element. Enabling S_ template vars also allows for control over specific aspects of the pagination output such as next, previous, active and ellipsis. Related to this - merging the capabilities of the topic_generate_pagination with generate_pagination removes an element of duplication. PHPBB3-10968
* | Merge branch 'develop-olympus' into developOleg Pudeyev2012-04-031-15/+5
|\ \ | | | | | | | | | | | | | | | * develop-olympus: [ticket/10658] Do not fetch ranks into the $ranks array, it is no longer used. [ticket/10658] Use get_user_rank() for group ranks on group view.
| * \ Merge remote-tracking branch 'bantu/ticket/10658' into develop-olympusOleg Pudeyev2012-04-031-15/+5
| |\ \ | | | | | | | | | | | | | | | | | | | | * bantu/ticket/10658: [ticket/10658] Do not fetch ranks into the $ranks array, it is no longer used. [ticket/10658] Use get_user_rank() for group ranks on group view.
| | * | [ticket/10658] Do not fetch ranks into the $ranks array, it is no longer used.Andreas Fischer2012-03-081-5/+0
| | | | | | | | | | | | | | | | PHPBB3-10658
| | * | [ticket/10658] Use get_user_rank() for group ranks on group view.Andreas Fischer2012-02-181-10/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The old code was buggy because it did not prefix the path with the phpBB root path which causes problems with bridges and other URL rewriting. PHPBB3-10658
* | | | Merge branch 'develop-olympus' into developOleg Pudeyev2012-03-161-0/+1
|\ \ \ \ | |/ / / | | | | | | | | | | | | * develop-olympus: [ticket/10689] Fix "First character"-option in "Find a member"-search
| * | | [ticket/10689] Fix "First character"-option in "Find a member"-searchJoas Schilling2012-03-121-0/+1
| |/ / | | | | | | | | | PHPBB3-10689
* | | [ticket/10634] Specify module type when viewing profileVjacheslav Trushkin2012-02-091-5/+5
| | | | | | | | | | | | | | | | | | Specify module type when checking for enabled modules when viewing user's profile PHPBB3-10634
* | | [ticket/9916] Updating header license and removing Version $Id$Unknown2011-12-311-2/+1
| | | | | | | | | | | | PHPBB3-9916
* | | [ticket/10345] Use the plural function in some more places.Joas Schilling2011-11-251-2/+2
| | | | | | | | | | | | | | | | | | | | | I added two function avatar_explanation_string() and avatar_error_wrong_size() for easier handling of the "pixels"-languages, as they are used quite often. PHPBB3-10345
* | | [ticket/10345] Make use of the plural function in some basic placesJoas Schilling2011-11-251-1/+1
| |/ |/| | | | | PHPBB3-10345
* | Merge branch 'develop-olympus' into developIgor Wiedler2011-11-201-4/+1
|\ \ | |/ | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/10446] Pass $config and $user via parameter to anti_abuse_headers(). [ticket/10446] Remove leftover $headers parameter from anti_abuse_headers(). [ticket/10446] RFC2047 encode user/server names in X-AntiAbuse headers. [ticket/10446] DRY X-AntiAbuse header addition. Conflicts: phpBB/includes/ucp/ucp_register.php
| * [ticket/10446] Pass $config and $user via parameter to anti_abuse_headers().Andreas Fischer2011-11-201-1/+1
| | | | | | | | PHPBB3-10446
| * [ticket/10446] DRY X-AntiAbuse header addition.Oleg Pudeyev2011-11-201-4/+1
| | | | | | | | PHPBB3-10446
* | [ticket/10410] Add option to display users in their first teampage groupJoas Schilling2011-10-281-2/+2
| | | | | | | | PHPBB3-10410
* | Merge branch 'develop-olympus' into developNils Adermann2011-08-181-1/+1
|\ \ | |/ | | | | | | | | | | | | | | | | * develop-olympus: [ticket/8571] Show age as 0 in birthday list when birthday is in the future. [ticket/8571] Show 'Age: 0' on viewprofile when birthday is in the future. [ticket/8571] Also display age on memberlist/viewprofile when age is 0. Conflicts: phpBB/index.php
| * [ticket/8571] Show 'Age: 0' on viewprofile when birthday is in the future.Andreas Fischer2011-07-201-1/+1
| | | | | | | | PHPBB3-8571
* | Merge remote-tracking branch 'igorw/ticket/9608' into developOleg Pudeyev2011-08-141-1/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | * igorw/ticket/9608: [ticket/9608] Remove use of references in topic_review [ticket/9608] Revert changes to normalizer [ticket/9608] Remove blank line [ticket/9608] Remove use of references in captcha and other places
| * | [ticket/9608] Remove use of references in captcha and other placesIgor Wiedler2011-07-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | References are not really needed in PHP due to copy-on-write. Since PHP5, objects are always passed around as identifiers, which means they are mutable. So it is no longer required to pass these by reference either. PHPBB3-9608
* | | Merge branch 'develop-olympus' into developNils Adermann2011-07-161-1/+1
|\ \ \ | | |/ | |/| | | | | | | | | | | | | * develop-olympus: [ticket/10243] Adding a few unit tests for phpbb_gmgetdate(). [ticket/10243] Call phpbb_gmgetdate() from various places. [ticket/10243] Adding wrapper function for getdate() for UTC timestamps.
| * | Merge remote-tracking branch 'github-bantu/ticket/10243' into develop-olympusNils Adermann2011-07-161-1/+1
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | * github-bantu/ticket/10243: [ticket/10243] Adding a few unit tests for phpbb_gmgetdate(). [ticket/10243] Call phpbb_gmgetdate() from various places. [ticket/10243] Adding wrapper function for getdate() for UTC timestamps.
| | * | [ticket/10243] Call phpbb_gmgetdate() from various places.Andreas Fischer2011-07-131-1/+1
| | | | | | | | | | | | | | | | PHPBB3-10243
* | | | Merge branch 'develop-olympus' into developNils Adermann2011-07-161-8/+26
|\ \ \ \ | |/ / / | | | / | |_|/ |/| | * develop-olympus: [ticket/7291] Use template loop for character list, to avoid double &first_char
| * | [ticket/7291] Use template loop for character list, to avoid double &first_charJoas Schilling2011-07-141-8/+26
| |/ | | | | | | PHPBB3-7291
* | [ticket/9684] Remove code in some more files especially includes/Joas Schilling2011-04-071-1/+1
| | | | | | | | | | | | Topic-Tracking is still missing. PHPBB3-9684
* | [ticket/9684] Remove code for global announcement in root-filesJoas Schilling2011-04-071-1/+1
| | | | | | | | PHPBB3-9684
* | Merge branch 'develop-olympus' into developAndreas Fischer2011-04-051-1/+1
|\ \ | |/ | | | | | | | | * develop-olympus: [ticket/10121] Fix missing urlencode() for ICQ-number in viewtopic.php [ticket/10121] Fix ICQ profile link, leading to a dead web-messenger.
| * [ticket/10121] Fix ICQ profile link, leading to a dead web-messenger.Joas Schilling2011-04-031-1/+1
| | | | | | | | PHPBB3-10121
* | [ticket/10021] Adjust ticket/10021 for developIgor Wiedler2011-03-201-7/+2
| | | | | | | | | | | | Ascraeus is PHP5.2+, so we no longer need to check for -1. PHPBB3-10021
* | Merge branch 'develop-olympus' into developIgor Wiedler2011-03-201-2/+26
|\ \ | |/ | | | | | | | | * develop-olympus: [ticket/10021] Add comment explaining why we can check -1 as an error value. [ticket/10021] Check whether gmmktime() returns false before putting it in SQL.
| * [ticket/10021] Add comment explaining why we can check -1 as an error value.Andreas Fischer2011-03-181-0/+5
| | | | | | | | PHPBB3-10021
| * [ticket/10021] Check whether gmmktime() returns false before putting it in SQL.Andreas Fischer2011-03-071-2/+21
| | | | | | | | | | | | This prevents SQL errors when large dates are entered. PHPBB3-10021
* | [ticket/9549] Display users in their primary group instead of their first groupJoas Schilling2011-02-251-0/+5
| | | | | | | | PHPBB3-9549
* | [ticket/9549] Fix displaying empty groupsJoas Schilling2011-02-241-15/+20
| | | | | | | | PHPBB3-9549
* | [ticket/9549] Enhance teampage and legend functionalityJoas Schilling2011-02-161-130/+127
| | | | | | | | PHPBB3-9549
* | [ticket/9556] Drop php closing tags, add trailing newlineIgor Wiedler2010-11-111-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | Closing tags converted using Oleg's script. remove-php-end-tags.py -a . Trailing newlines added using the following where $ext is file extension. find . -type f -name "*.$ext" -print | xargs printf "e %s\nw\n" | ed -s; Extensions: php, css, html, js, xml. PHPBB3-9556
* | [feature/request-class] Convert any direct access to $_* to use $requestIgor Wiedler2010-09-251-1/+1
|/ | | | PHPBB3-9716
* [ticket/9772] Unify permissions for sending email when board_email_form is offJosh Woody2010-08-281-1/+1
| | | | | | | | Sending email via memberlist.php was limited to users having u_sendemail. When board_email_form is disabled, no such requirement was enforced. This is now changed. PHPBB3-9772
* Small text corrections. r10393Andreas Fischer2009-12-311-1/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10394 89ea8834-ac86-4346-8a33-228a782c2dd0
* Remove complex query, add true sorting for viewprofile group list. Related ↵Andreas Fischer2009-12-311-6/+27
| | | | | | to #31845 git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10393 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fix Bug #31845 - List hidden groups on viewprofile where the viewing user is ↵Andreas Fischer2009-12-311-6/+35
| | | | | | also a member. git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10392 89ea8834-ac86-4346-8a33-228a782c2dd0
* fix whitespaces/tabs in r10256Meik Sievertsen2009-11-071-3/+3
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10257 89ea8834-ac86-4346-8a33-228a782c2dd0
* #53655Henry Sudhof2009-11-071-4/+6
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10256 89ea8834-ac86-4346-8a33-228a782c2dd0