aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewtopic.php
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | [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
* | | | [ticket/10273] AJAXified approve / disapprove posts (in viewtopic).Callum Macrae2012-03-311-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit AJAXifies the moderator approval functionality, and adds it to viewtopic instead of the MCP. This commit has involved some language changes, which may affect fallbacks. PHPBB3-10273
* | | | [ticket/10510] Added docs to viewtopic quick mod tools array.Callum Macrae2012-03-291-0/+2
| | | | | | | | | | | | | | | | PHPBB3-10510
* | | | [ticket/10510] Moved a $user->lang call into the function.Callum Macrae2012-03-171-2/+1
| | | | | | | | | | | | | | | | PHPBB3-10510
* | | | [ticket/10510] Shortened an if statement.Callum Macrae2012-03-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Replaced an isset() and var check with a !empty. PHPBB3-10510
* | | | [ticket/10510] Made a couple improvements to phpbb_add_quickmod_option.Callum Macrae2012-03-171-2/+2
| | | | | | | | | | | | | | | | PHPBB3-10510
* | | | [ticket/10510] Added phpbb_add_quickmod_option and moved existing to it.Callum Macrae2012-03-171-89/+21
| | | | | | | | | | | | | | | | PHPBB3-10510
* | | | [ticket/10510] Moved quick-mod tools into a loop.Callum Macrae2012-03-171-13/+93
| | | | | | | | | | | | | | | | PHPBB3-10510
* | | | [ticket/10510] Moved quick-mod tools markup to template.callumacrae2012-03-041-15/+13
| |/ / |/| | | | | | | | PHPBB3-10510
* | | Merge branch 'develop-olympus' into developOleg Pudeyev2012-02-111-1/+1
|\ \ \ | | |/ | |/| | | | | | | | | | * develop-olympus: [ticket/10606] Also correctly use $s_search_hidden_fields in view(forum|topic). [ticket/10606] Fix incorrect hidden fields array name in page_header().
| * | [ticket/10606] Also correctly use $s_search_hidden_fields in view(forum|topic).Andreas Fischer2012-02-091-1/+1
| | | | | | | | | | | | | | | | | | Regression from dfb7cc625a37c6345fa647ee3a21f890ba5c9649. PHPBB3-10606
* | | [ticket/9916] Updating header license and removing Version $Id$Unknown2011-12-311-2/+1
| | | | | | | | | | | | PHPBB3-9916
* | | Merge branch 'develop-olympus' into developNils Adermann2011-12-091-0/+9
|\ \ \ | |/ / | | | | | | | | | * develop-olympus: [ticket/10319] Missing hidden fields in search form
| * | [ticket/10319] Missing hidden fields in search formVjacheslav Trushkin2011-12-091-0/+9
| | | | | | | | | | | | | | | | | | Missing hidden fields in search form (bug added in 3.0.9) PHPBB3-10319
* | | [ticket/10345] Make use of the plural function in some basic placesJoas Schilling2011-11-251-6/+4
| |/ |/| | | | | PHPBB3-10345
* | [ticket/10484] Use variables for sql_build_query() callsJoas Schilling2011-11-211-5/+6
| | | | | | | | | | | | It's easier for mods/extensions to extend the arrays. PHPBB3-10484
* | Merge branch 'develop-olympus' into developAndreas Fischer2011-11-111-2/+3
|\ \ | |/ | | | | | | | | | | | | * develop-olympus: [ticket/10237] Display login-box for guests, when (un)subscribing Conflicts: phpBB/includes/functions_display.php
| * Merge remote-tracking branch 'nickvergessen/ticket/10237' into develop-olympusAndreas Fischer2011-11-111-2/+3
| |\ | | | | | | | | | | | | * nickvergessen/ticket/10237: [ticket/10237] Display login-box for guests, when (un)subscribing
| | * [ticket/10237] Display login-box for guests, when (un)subscribingJoas Schilling2011-11-061-2/+3
| | | | | | | | | | | | | | | | | | Also initialise $is_watching for PHP Notice: Undefined variable is_watching PHPBB3-10237
* | | [feature/remove-imagesets] Adjustments to php filesVjacheslav Trushkin2011-09-041-1/+1
| | | | | | | | | | | | | | | | | | Removing imagesets. Adjustments to php files PHPBB3-10336
* | | Merge branch 'develop-olympus' into developAndreas Fischer2011-08-161-3/+11
|\ \ \ | |/ / | | | | | | | | | * develop-olympus: [ticket/9976] Fix link to post when two posts have the same post_time.
| * | [ticket/9976] Fix link to post when two posts have the same post_time.Joas Schilling2011-07-301-3/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | When two posts have the same post_time, a link to the first post being on page 1, leads you to the second post with the same timestamp on page two. So in case the post_times are equal, we need to use the post_id to correctly order the posts. PHPBB3-9976
* | | 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 developAndreas Fischer2011-07-301-7/+6
|\ \ \ \ | | |/ / | |/| | | | | | | | | | * develop-olympus: [ticket/10199] Delete a useless join in viewtopic.