aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewtopic.php
Commit message (Collapse)AuthorAgeFilesLines
* [feature/avatars] Add phpbb prefix to new functionsMarc Alexander2013-01-041-2/+2
| | | | | | | | Although get_user_avatar() is not new, the phpbb prefix was prepended. This is due to the fact that it was entirely rewritten and is therefore more or less a completely new function. PHPBB3-10018
* Merge branch 'develop' of github.com:marc1706/phpbb3 into feature/avatarsMarc Alexander2012-12-241-1/+1
|\
| * [ticket/11243] Show download all link on all pages of topic with attachmentsDavid King2012-12-111-1/+1
| | | | | | | | PHPBB3-11243
* | Merge branch 'feature/avatars' of https://github.com/igorw/phpbb3 into ↵Marc Alexander2012-11-121-2/+2
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | feature/avatars Conflicts: phpBB/adm/style/acp_groups.html phpBB/adm/style/acp_users_avatar.html phpBB/includes/acp/acp_groups.php phpBB/includes/acp/acp_users.php phpBB/includes/functions_display.php phpBB/install/database_update.php phpBB/install/schemas/mssql_schema.sql phpBB/styles/prosilver/template/ucp_avatar_options.html
| * Merge branch 'develop' into feature/avatarsIgor Wiedler2012-07-211-10/+15
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop: (201 commits) [feature/new-tz-handling] Don't use global user but make it a parameter [feature/new-tz-handling] Fix size of suggestion button in chrome [feature/new-tz-handling] Fall back to UTC, if the timezone is invalid [feature/new-tz-handling] Add previous selected value to validation if valid [feature/new-tz-handling] Display suggestion when a different value is selected [ticket/10998] Add border-radius to forum rules block - prosilver [feature/new-tz-handling] Remove additional marking of selected items [feature/new-tz-handling] Move update helper function to new class [feature/new-tz-handling] Fix unit test [feature/new-tz-handling] Delete old variable which is not used anymore [feature/new-tz-handling] Rename $user->tz back to $user->timezone [feature/pagination-as-list] New parameter for name of start var [feature/pagination-as-list] Updates for nils comments [feature/pagination-as-list] Rename and deprecate functions [feature/pagination-as-list] Various fixes and improvements [ticket/10968] Render pagination within the template [feature/new-tz-handling] Remove "timezone might be numeric" [feature/new-tz-handling] Add function to update the timezone [feature/new-tz-handling] Correctly update user and board timezones on update [ticket/10996] Use correct DBMS name in Travis config for PostgreSQL ...
| * \ Merge remote-tracking branch 'upstream/develop' into feature/avatarsIgor Wiedler2012-06-271-2/+3
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * upstream/develop: (255 commits) [ticket/10935] Limit number of PM rules per user to 5000 [ticket/10801] Fixed quickmod tools. [ticket/9551] uncomment line and change length to 255 [ticket/10925] Clarify installation requirements for SQLite [ticket/10938] Serve subforum listing on forumlist from template loop [ticket/10640] Change subject length in mcp in subsilver [ticket/10640] Change subject length in MCP [ticket/10640] Do not change default value of truncate_string() [ticket/10640] Change maximum subject length [ticket/10936] remove PCRE and mbstring support check [ticket/10936] fix language key [ticket/10829] Delete T_STYLESHEET_NAME - no longer used. [ticket/10829] $style_name -> $style_path in style class. [ticket/10743] Renaming user->theme [ticket/10743] Changing obtain_cfg_items [ticket/10882] Fix test name - oops. [ticket/10931] Apply strtolower() correctly, i.e. not on false. [ticket/10931] Also test get_bytes() and get_string() with false. [ticket/10931] Make to_numeric function globally available. [ticket/10932] Use included composer.phar in build process ... Conflicts: phpBB/includes/mcp/mcp_warn.php phpBB/install/database_update.php phpBB/styles/prosilver/template/ucp_avatar_options.html
| * \ \ Merge branch 'develop' into feature/avatarsIgor Wiedler2012-04-071-14/+28
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop: (335 commits) [ticket/10575] Adding public visibility to the methods. [ticket/10575] Fixing non-static access to static functions get_instance [ticket/10547] User is not logged in as admin after installation [ticket/10650] Revert merge of 'rahulr92/ticket/10650' into develop [ticket/10650] Added checking for empty subjects [ticket/10650] Corrected intendation [ticket/10650]Added permission checking and utf8 functions [ticket/10650] Cropped subject and inserted newline [ticket/10650] Corrected space before true [ticket/10650] Changed language files and forumlist [ticket/10650] Added static sql files [ticket/10650] Displaying last topic on forum list [ticket/10760] Fix numbering in php fun facts. [ticket/10760] Value must be quoted as it might be two words. [ticket/10760] PHP is great. This commit is the proof. [ticket/10760] Catch both versions of parse error output in php. [ticket/10607] Added 'Powered by' translation string. [ticket/10760] Account for display_errors=stderr in pre-commit hook. [ticket/10760] Quote PHP_BIN when using it. [ticket/10760] Use echo -e only if echo understands -e. ...
| * | | | [feature/avatars] Modularized AvatarsCullen Walsh2012-03-181-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A modularized avatar system that easily allows plugins to be created for various avatar services, such as Gravatar. This inital commit includes module support and is backwards compatible with 3.0 avatars, but does notcontain ACP or UCP modules for manipulating new avatars. PHPBB3-10018
* | | | | Merge remote-tracking branch 'Fyorl/feature/attach-dl' into developAndreas Fischer2012-08-261-0/+17
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fyorl/feature/attach-dl: (75 commits) [feature/attach-dl] Removed the use of some abbreviations [feature/attach-dl] Changed $files_added checks [feature/attach-dl] Renamed $post_id to $post_msg_id [feature/attach-dl] Fixed a comment [feature/attach-dl] Optimised an sql query [feature/attach-dl] Fixed the logic in an sql statement [feature/attch-dl] $forum_id cast to int [feature/attach-dl] Fixed $file_added to $files_added [feature/attach-dl] Moved definition of $archive_name [feature/attach-dl] Swapped the order of an if statement [feature/attach-dl] Cast variables to int [feature/attach-dl] Added $archive_path [feature/attach-dl] Used COMMA_SEPARATOR instead of actual comma [feature/attach-dl] Renamed $count to $files_added [feature/attach-dl] Removed sprintf() use [feature/attach-dl] Removed need for array_keys() [feature/attach-dl] Added multiple attachment downloads to PMs [feature/attach-dl] Removed reliance on current($row) [feature/attach-dl] Renamed to phpbb_download_handle_forum_auth [feature/attach-dl] Moved PM authentication handling into own function ...
| * | | | | [feature/attach-dl] Removed the use of some abbreviationsFyorl2012-08-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11042
| * | | | | [feature/attach-dl] Renamed $post_id to $post_msg_idFyorl2012-08-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11042
| * | | | | [feature/attach-dl] Moved include of compress class inside functionFyorl2012-08-071-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11042
| * | | | | [feature/attach-dl] Moved functions_compress includeFyorl2012-08-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11042
| * | | | | [feature/attach-dl] Prefixed gen_download_links with phpbb_Fyorl2012-08-041-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11042
| * | | | | [feature/attach-dl] Downloading all attachments fully implementedFyorl2012-08-041-3/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added a function to list all available archiving methods and integrated it with the prosilver style. Heavy modifications to download/file.php to support archiving and downloading of multiple files at once. PHPBB3-11042
| * | | | | [feature/attach-dl] Added links to the templatesFyorl2012-08-021-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11042
* | | | | | Merge remote-tracking branch 'nickvergessen/feature/php-events-4' into developDavid King2012-08-201-6/+74
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | [feature/php-events] Fix doc of core.viewtopic_get_post_dataJoas Schilling2012-08-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | [feature/php-events] Fix doc of core.viewtopic_cache_guest_dataJoas Schilling2012-08-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | [feature/php-events] Fix doc and naming of core.viewtopic_modify_page_titleJoas Schilling2012-08-061-1/+11
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | [feature/php-events] Fix doc and naming of core.viewtopic_modify_post_rowJoas Schilling2012-08-061-1/+11
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | [feature/php-events] Fix doc and naming of core.viewtopic_cache_user_dataJoas Schilling2012-08-061-2/+11
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | [feature/php-events] Fix doc and naming of core.viewtopic_cache_guest_dataJoas Schilling2012-08-061-2/+11
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | [feature/php-events] Fix doc and naming of core.viewtopic_get_post_dataJoas Schilling2012-08-061-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | [feature/php-events] Make naming of postrow consistent with others (post_row)Joas Schilling2012-08-011-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | [feature/php-events] Add additional vars and control to viewtopic_postrow eventJoas Schilling2012-08-011-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | [feature/events] Removing the third trigger_event parameterMichael Cullum2012-08-011-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | [feature/events] Change to use the new method of adding eventsMichael Cullum2012-08-011-15/+5
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | [feature/events] Adding ledge viewtopic_user_cacheJoas Schilling2012-08-011-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Used by phpBB Gallery PHPBB3-9550
| * | | | | [feature/events] Adding ledge viewtopic_user_cache_guestJoas Schilling2012-08-011-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Used by phpBB Gallery PHPBB3-9550
| * | | | | [feature/events] Adding ledge viewtopic_get_userdataJoas Schilling2012-08-011-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Used by phpBB Gallery PHPBB3-9550
| * | | | | [feature/events] Adding ledge viewtopic_page_headerJoas Schilling2012-08-011-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Used by phpBB Gallery PHPBB3-9550
| * | | | | [feature/events] Add core.viewtopic_postrow ledgeMichael Cullum2012-08-011-0/+5
| | |_|_|/ | |/| | | | | | | | | | | | | PHPBB3-9550
* | | | | [ticket/10990] Use $user->lang['COMMA_SEPARATOR'] when appropriateNathan2012-07-221-1/+1
|/ / / / | | | | | | | | | | | | PHPBB3-10990
* | | | Merge pull request #843 from nickvergessen/feature/new-tz-handlingNils Adermann2012-07-191-1/+2
|\ \ \ \ | | | | | | | | | | Feature/new tz handling
| * \ \ \ Merge branch 'develop' of git://github.com/phpbb/phpbb3 into ↵Joas Schilling2012-07-181-4/+8
| |\ \ \ \ | | | | | | | | | | | | | | | | | | 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-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-2/+1
| |_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 PR #759 branch 'nickvergessen/ticket/10811' into developOleg Pudeyev2012-07-051-4/+8
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * nickvergessen/ticket/10811: [ticket/10811] Make toogle_subscribe more generic so it can toogle all links [ticket/10811] Make it easier for MODs/Extensions to define the alt-text [ticket/10811] Make subscribe/unsubscribe repeatable with AJAX [ticket/10811] Fix AJAX callback alt_text so it can be repeated.
| * | | | [ticket/10811] Make toogle_subscribe more generic so it can toogle all linksJoas Schilling2012-07-051-2/+4
| | | | | | | | | | | | | | | | | | | | PHPBB3-10811
| * | | | [ticket/10811] Make it easier for MODs/Extensions to define the alt-textJoas Schilling2012-05-161-4/+6
| | |_|/ | |/| | | | | | | | | | PHPBB3-10811
* | | | [ticket/10847] fixing all misspelled "dependant" to "dependent"Senky2012-04-301-1/+1
| | | | | | | | | | | | | | | | PHPBB3-10847
* | | | [ticket/10777] Split the comment into 2 linesRahul R2012-04-131-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Split the comment into 2 lines each having less than 79 characters. PHPBB3-10777
* | | | [ticket/10777] Corrected typo in commentRahul R2012-04-101-1/+1
|/ / / | | | | | | | | | | | | | | | savely was corrected to safely PHPBB3-10777
* | | [ticket/10270] Removed all the inline language and HTML from the JS.Callum Macrae2012-03-311-0/+2
| | | | | | | | | | | | PHPBB3-10270