| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
Feature/new tz handling
|
| |\
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
feature/new-tz-handling
Conflicts:
phpBB/includes/functions_profile_fields.php
phpBB/includes/session.php
phpBB/install/database_update.php
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Add a new parameter to hold the name of the start variable. This
fulfills ticket PHPBB3-8535.
PHPBB3-10968
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Re-remove deprecated functions, change on_page to phpbb_on_page,
add null returns, remove globals and pass as params.
PHPBB3-10968
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Returned and marked deprecated topic_generate_pagination. Rename
new function in line with coding guidelines.
PHPBB3-10968
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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
|
|\ \
| | |
| | |
| | |
| | |
| | | |
* 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.
|
| |\ \
| | | |
| | | |
| | | |
| | | |
| | | | |
* 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.
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-10658
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
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
|
|\ \ \ \
| |/ / /
| | | |
| | | |
| | | | |
* develop-olympus:
[ticket/10689] Fix "First character"-option in "Find a member"-search
|
| |/ /
| | |
| | |
| | | |
PHPBB3-10689
|
| | |
| | |
| | |
| | |
| | |
| | | |
Specify module type when checking for enabled modules when viewing user's profile
PHPBB3-10634
|
| | |
| | |
| | |
| | | |
PHPBB3-9916
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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
|
| |/
|/|
| |
| | |
PHPBB3-10345
|
|\ \
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* 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
|
| |
| |
| |
| | |
PHPBB3-10446
|
| |
| |
| |
| | |
PHPBB3-10446
|
| |
| |
| |
| | |
PHPBB3-10410
|
|\ \
| |/
| |
| |
| |
| |
| |
| |
| |
| | |
* 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
|
| |
| |
| |
| | |
PHPBB3-8571
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* 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
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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
|
|\ \ \
| | |/
| |/|
| | |
| | |
| | |
| | | |
* 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.
|
| |\ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* 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.
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-10243
|
|\ \ \ \
| |/ / /
| | | /
| |_|/
|/| | |
* develop-olympus:
[ticket/7291] Use template loop for character list, to avoid double &first_char
|
| |/
| |
| |
| | |
PHPBB3-7291
|
| |
| |
| |
| |
| |
| | |
Topic-Tracking is still missing.
PHPBB3-9684
|
| |
| |
| |
| | |
PHPBB3-9684
|
|\ \
| |/
| |
| |
| |
| | |
* 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.
|
| |
| |
| |
| | |
PHPBB3-10121
|
| |
| |
| |
| |
| |
| | |
Ascraeus is PHP5.2+, so we no longer need to check for -1.
PHPBB3-10021
|
|\ \
| |/
| |
| |
| |
| | |
* 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.
|
| |
| |
| |
| | |
PHPBB3-10021
|
| |
| |
| |
| |
| |
| | |
This prevents SQL errors when large dates are entered.
PHPBB3-10021
|
| |
| |
| |
| | |
PHPBB3-9549
|
| |
| |
| |
| | |
PHPBB3-9549
|
| |
| |
| |
| | |
PHPBB3-9549
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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
|
|/
|
|
| |
PHPBB3-9716
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10394 89ea8834-ac86-4346-8a33-228a782c2dd0
|
|
|
|
|
|
| |
to #31845
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10393 89ea8834-ac86-4346-8a33-228a782c2dd0
|
|
|
|
|
|
| |
also a member.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10392 89ea8834-ac86-4346-8a33-228a782c2dd0
|
|
|
|
| |
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10257 89ea8834-ac86-4346-8a33-228a782c2dd0
|
|
|
|
| |
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10256 89ea8834-ac86-4346-8a33-228a782c2dd0
|