aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewtopic.php
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | 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-1/+1
|\ \ \ \ | |/ / / | | | / | |_|/ |/| | | | | | | | | | | | | | | | | * develop-olympus: [ticket/10237] Also display login-box on subscribing [ticket/10237] Handle watching and unwatching the same way. [ticket/10237] Use confirm-box to handle unwatching a forum/topic actions Conflicts: phpBB/includes/functions_display.php
| * | [ticket/10237] Handle watching and unwatching the same way.Joas Schilling2011-07-111-1/+1
| |/ | | | | | | | | | | Also add some information to the confirm-box (forum_name / topic title) PHPBB3-10237
* | Merge branch 'develop-olympus' into developAndreas Fischer2011-06-191-1/+1
|\ \ | |/ | | | | | | * develop-olympus: [ticket/10232] Renamed S_SEARCH_HIDDEN_FIELDS to S_SEARCH_LOCAL_HIDDEN_FIELDS
| * [ticket/10232] Renamed S_SEARCH_HIDDEN_FIELDS to S_SEARCH_LOCAL_HIDDEN_FIELDSNils Adermann2011-06-181-1/+1
| | | | | | | | | | | | | | Avoids the global hidden fields from functions.php overwriting local searches. PHPBB3-10232
* | Merge branch 'develop-olympus' into developAndreas Fischer2011-06-091-1/+11
|\ \ | |/ | | | | | | * develop-olympus: [ticket/7888] Swap in-forum/topic search to GET forms.
| * [ticket/7888] Swap in-forum/topic search to GET forms.Nils Adermann2011-06-091-1/+11
| | | | | | | | | | | | | | | | This will allow sending URLs to search results to other users. The advanced search page has always worked like this, but these special pages used to cause problems. PHPBB3-7888
* | [ticket/9684] Remove code for global announcement in root-filesJoas Schilling2011-04-071-66/+6
| | | | | | | | 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 missing urlencode() for ICQ-number in viewtopic.phpJoas Schilling2011-04-031-1/+1
| | | | | | | | PHPBB3-10121
| * [ticket/10121] Fix ICQ profile link, leading to a dead web-messenger.Joas Schilling2011-04-031-1/+1
| | | | | | | | PHPBB3-10121
* | Merge branch 'develop-olympus' into developJoas Schilling2011-03-031-0/+1
|\ \ | |/ | | | | | | * develop-olympus: [ticket/10072] Added the POST_NUMBER template var
| * [ticket/10072] Added the POST_NUMBER template varSam Thompson2011-03-021-0/+1
| | | | | | | | PHPBB3-10072
* | Merge branch 'ticket/VSE/9532' into developAndreas Fischer2010-12-281-1/+1
|\ \ | | | | | | | | | | | | * ticket/VSE/9532: [ticket/9532] Simplified page titles by removing meaningless text.
| * | [ticket/9532] Simplified page titles by removing meaningless text.Matt2010-05-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Removed View Forum, View Topic, added pagination to forum and topic page titles, also moved the Site Name to the end of title for forum and topic view pages. PHPBB3-9532
* | | Merge branch 'feature/igorw/request-class' into developAndreas Fischer2010-12-161-2/+2
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * feature/igorw/request-class: [feature/request-class] Convert some remaining cookies [feature/request-class] Adjust misleading comment [feature/request-class] Remove direct access to _REQUEST in acp_search [feature/request-class] Special case of direct access to _REQUEST
| * | | [feature/request-class] Convert some remaining cookiesIgor Wiedler2010-10-171-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Convert some remaining accesses to cookie to use the request class instead. Thanks to bantu for the note. PHPBB3-9716
* | | | [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] Replace direct use of GET/REQUEST with request_var.Nils Adermann2010-09-171-4/+4
| |/ |/| | | | | | | | | | | Now with $_VARs causing fatal errors we should really be able to find and delete all of these occurances. 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
* | [ticket/7720] Fix alternative image-description for unread posts.Joas Schilling2010-07-141-1/+1
|/ | | | | | | | Changed the wrong word "new" to "unread" as that is, what we show with the red-icons, not whether the post is new or not. Language variables were kept for backwards compatibility. PHPBB3-7720
* [bug/59465] Removes start=0 from URLs used by viewtopic and viewforum.Chris Smith2010-03-181-6/+6
| | | | | | Having start=0 makes search engines index the page twice once with and once without the start=0 parameter. This results in duplicate results in the search results. Patch contributed by nn-.
* Firebird based board can now access their global announcements, took a while ↵Chris Smith2010-02-201-0/+7
| | | | | | to discover this one. #57525 git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10509 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fix bug #56555 - Quick reply + posting permissionRuslan Uzdenov2010-01-171-2/+6
| | | | | | Authorised by: ToonArmy git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10414 89ea8834-ac86-4346-8a33-228a782c2dd0
* Bug #56235 - Do not unsubscribe users from topics replying with quickreply.Joas Schilling2010-01-171-1/+1
| | | | | | | | Authorised by: ToonArmy git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10408 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fix Bug #53025 - Correctly show topic ATOM feed link when only post id is ↵Andreas Fischer2009-11-301-0/+6
| | | | | | specified. git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10295 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fix Bug #51775 - Do not unlock topics with QuickReplyJoas Schilling2009-09-231-0/+1
| | | | | | Authorised by: AcydBurn git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10179 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fix Bug #51375 - Do not show QR in closed topics/forumsJoas Schilling2009-09-181-1/+2
| | | | | | Authorised by: AcydBurn git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10161 89ea8834-ac86-4346-8a33-228a782c2dd0
* fix r10076 for #48615 - Ability to specify amount of time user is able to ↵Joas Schilling2009-08-311-1/+2
| | | | | | | | | delete his last post in topic. Authorised by: AcydBurn git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10080 89ea8834-ac86-4346-8a33-228a782c2dd0
* Do not take edit post time into account for determining permission to delete ↵Meik Sievertsen2009-08-311-2/+16
| | | | | | last post in topic. (Bug #48615) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10076 89ea8834-ac86-4346-8a33-228a782c2dd0
* Sort private messages by message time and not message id. (Bug #50015)Meik Sievertsen2009-08-201-2/+2
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10035 89ea8834-ac86-4346-8a33-228a782c2dd0
* Better tracking of global announcementsRuslan Uzdenov2009-08-181-0/+21
| | | | | | Authorised by: AcydBurn git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10018 89ea8834-ac86-4346-8a33-228a782c2dd0
* we are not supposed to know that yetHenry Sudhof2009-08-141-2/+2
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9985 89ea8834-ac86-4346-8a33-228a782c2dd0
* we are not supposed to know that yetHenry Sudhof2009-08-141-2/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9984 89ea8834-ac86-4346-8a33-228a782c2dd0
* #47795Henry Sudhof2009-08-141-4/+18
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9983 89ea8834-ac86-4346-8a33-228a782c2dd0
* ok, i am very sorry, but this needs to be fixed.Meik Sievertsen2009-08-121-1/+2
| | | | | | | | | Generally, our config table is not really suited for holding large datasets. Because feed settings for the forums to enable news feeds and excluded forums rely on the forums itself we have decided to introduce a forum_options table where custom options can be stored. Additionally, for this to work across all DBMS we support, we added a new method to the DBAL for the bitwise AND operator. Also moved the forum/topic feed template variable to the location where they belong to (forum and topic view) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9965 89ea8834-ac86-4346-8a33-228a782c2dd0
* populate who is online only where requiredHenry Sudhof2009-08-121-1/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9961 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fix bug #15729 - Global announcements marked as read if all new topics in ↵Ruslan Uzdenov2009-08-051-2/+2
| | | | | | | | forum are viewed Authorised by: AcydBurn git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9926 89ea8834-ac86-4346-8a33-228a782c2dd0
* #48985Henry Sudhof2009-08-031-1/+16
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9916 89ea8834-ac86-4346-8a33-228a782c2dd0
* Apply locale-independent basename() to attachment filenames. New function ↵Meik Sievertsen2009-08-011-1/+0
| | | | | | added: utf8_basename(). (Bug #43335 - Patch by ocean=Yohsuke) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9905 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fix bug #38055 - Post reply button shown in locked forum Ruslan Uzdenov2009-07-241-1/+1
| | | | | | Authorised by: AcydBurn git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9846 89ea8834-ac86-4346-8a33-228a782c2dd0
* QR changes to let the options actually work (we use checkboxes and isset())Meik Sievertsen2009-07-191-22/+25
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9798 89ea8834-ac86-4346-8a33-228a782c2dd0
* Cache get_username_string() function calls on viewtopic.Chris Smith2009-07-191-4/+9
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9790 89ea8834-ac86-4346-8a33-228a782c2dd0
* fix r9775Joas Schilling2009-07-181-0/+1
| | | | | | Authorised by: AcydBurn git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9780 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fix bug #37635 - Hide profile-icon from viewtopic-page if user has no ↵Joas Schilling2009-07-181-1/+0
| | | | | | | | | permissions (subsilver2 only) - Patch by leviatan21 Authorised by: AcydBurn git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9775 89ea8834-ac86-4346-8a33-228a782c2dd0
* #47725Henry Sudhof2009-07-021-0/+3
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9712 89ea8834-ac86-4346-8a33-228a782c2dd0
* gahHenry Sudhof2009-06-261-1/+2
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9693 89ea8834-ac86-4346-8a33-228a782c2dd0
* And check for permissions...Henry Sudhof2009-06-261-1/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9692 89ea8834-ac86-4346-8a33-228a782c2dd0