Register
Home Projects Help

root / trunk / phpBB / report.php

report.php

View | Annotate | Download (4.1 KB)

# Date Author Comment
8572 View | Annotate 05/29/2008 02:25 PM acydburn

ok… i hope i haven’t messed too much with the code and everything is still working.
Changes:
- Ascraeus now uses constants for the phpbb root path and the php extension. This ensures more security for external applications and modifications (no more overwriting of root path and extension possible through insecure mods and register globals enabled) as well as no more globalizing needed.
- A second change implemented here is an additional short-hand-notation for append_sid(). It is allowed to omit the root path and extension now (for example calling append_sid(‘memberlist’)) – in this case the root path and extension get added automatically. The hook is called after these are added.

8477 View | Annotate 03/29/2008 01:08 AM naderman

Go away evil carriage returns\!

8146 View | Annotate 10/05/2007 04:30 PM acydburn

dumdidum… sorry. ;)

7954 View | Annotate 07/26/2007 05:51 PM acydburn

do not get too excited

7432 View | Annotate 04/30/2007 01:44 PM vic_delfant

- #10159 (as well as the exact same issue with reports)
- #10263

7409 View | Annotate 04/26/2007 08:41 PM acydburn

checking in some fixes. ;) Most of them are really minor, including:
- correctly enter report notification into db
- fix double-quote pm issue

6584 View | Annotate 11/15/2006 04:35 PM acydburn

- fixes for the following bugs:
#5326
#5318
#5304
#5290
#5288
#5278
#5276
#5272
#5266
- also fixed the “Call-time pass-by-reference” bug #5252
- within this step changed the normalize calls to require references.
- added captcha size variables to the class scope (suggestion was posted at area51)

6569 View | Annotate 11/12/2006 03:29 PM naderman

message

6555 View | Annotate 11/05/2006 07:13 PM acydburn

- #5120
- #5104

6470 View | Annotate 10/08/2006 09:04 PM acydburn

- forum image being an additional image instead of replacing forum indicators
- reasons fixes

6063 View | Annotate 06/14/2006 08:59 PM naderman

- automatically sync topic_reported when deleting a post [Bug #2152]
- retrieve forum information in report.php
- don’t update deleted topics
- proper permission check for “admin or moderator”
- allow changing poster while ip dropdown contains a different user [Bug #2190]
- fixed a typo in acp_styles [Bug #2188]
- allow inserting BBCode at the first position of the textarea [Bug #2078]
- allow the style name to be different than the style path

6030 View | Annotate 06/09/2006 09:37 PM grahamje

Fix the ability to report/view reports and warn in global announcements

6021 View | Annotate 06/07/2006 09:32 PM acydburn

ok, sorry for this. :/
- cleaned up table names/constants

6015 View | Annotate 06/06/2006 10:53 PM acydburn

ok, this one is rather large… the most important change:
re-introduce append_sid: old style continues to work, not a performance hog as it was in 2.0.x -> structure is different

apart from this, code cleanage, bug fixing, etc.

5883 View | Annotate 05/05/2006 07:56 PM acydburn

- some adjustements for phpdocumentor

5771 View | Annotate 04/08/2006 04:30 PM naderman

- allow reporting posts that have a closed report
- show multiple reports for one post correctly
- Bug #1389

5765 View | Annotate 04/06/2006 07:15 PM acydburn

To all people having their bug status set to fixed: SF pserver CVS access is currently down, therefore the snapshots are still out of date.

- fix a bunch of bugs
- <!- $Id$ -> is no longer allowed in template (.html) files
- changed layout of private message screens (folders are menu items)
- removed unread mode for private messages
- added new feature to template engine – “jump out of loop” or “loop another loop within my loop” :D (will be documented within the coding guidelines)
- added autologin field to sessions
- check session length checks
- added add_log statement to sessions to track session valid to invalid changes if ip/browser change depending on config settings (only debug)
- added multibyte support for various variables (exception at the moment is usernames which needs some discussion)
- hopefully not broke something. :/

5622 View | Annotate 03/13/2006 12:19 AM acydburn

- streamlined reports to consist of the feature set we decided upon (Nils, your turn now)
- use getenv instead of $_ENV (with $_ENV the case could be wrong)
- permission fixes (there was a bug arising with getting permission flags – re-added them and handled roles deletion differently)
- implemented max login attempts
- changed the expected return parameters for logins/sessions
- added acp page for editing report/denial reasons
- other fixes here and there

5603 View | Annotate 03/06/2006 03:03 PM acydburn

- added “display_on_posting” setting to custom bbcodes (creates a button with the bbcode tag)
- fixed forum editing and parent id selection
- completely removed HTML support (it only creates security problems)
- changed cache_moderators() to reflect permission changes

5255 View | Annotate 10/04/2005 11:39 PM acydburn

- some bugfixes

5250 View | Annotate 10/03/2005 05:44 PM acydburn

blabla

5153 View | Annotate 05/24/2005 12:48 PM bartvb

Fixed small i18n related error in report.php

5117 View | Annotate 04/10/2005 08:07 PM acydburn

- added updated coding guidelines
- introduced is_registered and is_bot flags for correct determinition of guest/registered/bot users
- changed bot code to act on useragent || ip

5114 View | Annotate 04/09/2005 02:26 PM acydburn

- Documentation related changes
- added resend activation email dialog
- fixed issue in session code
- log failed/successful admin re-authentication/login
- fixed simple forum dropdown box (used in mcp and posting)

4978 View | Annotate 09/04/2004 09:32 PM acydburn

my turn to break the forum (and at least pm’s are no longer working – will not last long). HARRRR

4924 View | Annotate 07/11/2004 12:47 AM acydburn

- fork/copy topic
- resync topics
- possible to show only reported posts in topic_view
- view reports in post details
- mcp_queue (show unapproved items)

4920 View | Annotate 07/09/2004 12:41 AM acydburn

- remove output buffering options from download.php (not needed anymore)
- optimized viewtopic.php a little bit
- removed the create_function (was consuming too much memory) from viewtopic
- check for manually added convert[.exe] program name to imagemagick path in admin_attachments
- reduced filesize checking for imagemagick program (some installations require less than 20k)
- added checked=”checked” for “not selected” topic icon
- moved parse_text_display function from functions_posting.php to functions.php (see comment above function)
- check for user_id != ANONYMOUS in page_footer for displaying the administration link (there seems to be a problem checking for global options)
- rewrote attachment thumbnail functions – utilize GD2 functions if available, more uptodate checks…
- changed final thumbnail size calculation
- define S_ROW_COUNT within template class itself
- added SID to template vars in page_header
- added ability to view topic/forum within admin_viewlogs
- added optional acl checking to make_jumpbox, no need to duplicate the function for this small need
- added custom body file for confirm_box

4883 View | Annotate 05/02/2004 03:06 PM acydburn

fix some issues with oop, fixing small bugs and prepare the next steps…
NOTE TO DEVS: have a look at adm/admin_board.php (new config layout)

4844 View | Annotate 02/28/2004 10:16 PM acydburn

splitted language files

4473 View | Annotate 09/07/2003 03:46 PM psotfx

Updates mainly for removal of extension + header comment … moved some aspects of ucp around, further work to be done on these areas … not commiting search for time being

4445 View | Annotate 08/28/2003 12:03 AM ludovic_arnaud

Changed: Allow multiple reports. If one tries to report the same post twice, it will silently update the existing report.

4262 View | Annotate 07/15/2003 12:54 AM psotfx

Re-arrange auth and setup calls … needs to be repeated for all major scripts

4193 View | Annotate 07/03/2003 12:38 AM ludovic_arnaud

A single post can now only be reported once

4012 View | Annotate 05/19/2003 12:26 AM ludovic_arnaud

Fixed: some stuff ;)
Changed: users cannot report the same post twice. if an user tries to, s/he’s invited to edit his/her report

3969 View | Annotate 05/04/2003 01:58 AM psotfx

page header/footer become functions, forum passwords (I know, I know but it appears a popular feature for some reason … inclusion not yet set in concrete nor complete), various bug fixes (and no doubt new bugs).

3953 View | Annotate 04/26/2003 03:17 AM psotfx

Various changes, and tests … marking/tracking is not complete … tinkering, changing, etc. still to be done … it’s just I’ve made numerous and various changes to different files so a commit really is due

3798 View | Annotate 04/10/2003 12:00 AM ludovic_arnaud

“Report” button only shows up if the user is authorised. Default forum_id for globals temporary (and arbitrary) set to 2.

3783 View | Annotate 04/03/2003 02:06 AM ludovic_arnaud

I knew that I forgot something: f_report now in use

3779 View | Annotate 04/03/2003 01:13 AM ludovic_arnaud

Added user notification for post reporting, moved lang strings to lang_main, added CSS style for mcp_jumpbox

3655 View | Annotate 03/17/2003 02:59 AM psotfx

Windows carriage returns

3604 View | Annotate 03/06/2003 03:03 AM ludovic_arnaud

More “reporting” stuff, note the very lame warning in viewtopic when a post has been reported.