phpBB
Statistics
| Revision:

root / branches / phpBB-3_0_0 / phpBB / includes / mcp / mcp_warn.php

History | View | Annotate | Download (15.8 kB)

  • svn:eol-style: LF
  • svn:keywords: Author Date Id Revision
# Date Author Comment
9738 07/08/2009 02:58 pm Chris Smith

some changelog changes and a small SQL correction

9343 02/27/2009 10:54 am Chris Smith

Add link to user profile in the MCP for user notes and warn user.

9002 10/11/2008 07:01 pm Chris Smith

Do not send PMs with warnings if the user cannot read PMs or they are disabled. #30815

8621 06/08/2008 12:43 pm Meik Sievertsen

#25705

8598 06/04/2008 05:37 pm Nils Adermann

removed executable props [Bug #6464]

8479 03/29/2008 01:22 am Nils Adermann

Hiding everywhere little buggers, eh?

8285 12/26/2007 03:53 pm

This commit was manufactured by cvs2svn to create branch 'phpBB-3_0_0'.

8204 10/19/2007 03:10 pm Meik Sievertsen

fixing some annoying bugs

8147 10/05/2007 04:36 pm Meik Sievertsen

dumdidum... sorry. ;)

8124 10/03/2007 05:37 pm Henry Sudhof

and 16

8120 10/03/2007 05:05 pm Henry Sudhof

Ok, here comes a big one. Poor updater. Also requires testing.

#i91
#i92
#i93
#i94
#i95
#i96

8099 09/22/2007 08:31 pm Meik Sievertsen

#i62 - #i65
gone through every javascript invocation and making sure we adhere to our coding guidelines.

8050 08/19/2007 03:40 pm Nils Adermann

- BBCode parsing order should ALWAYS be censor_text(), bbcode_secon_pass(), bbcode_nl2br(), smiley_text(), parse_attachments()
- using \r on custom bbcodes to allow line breaks [Bug #10758]

7920 07/22/2007 10:11 pm Meik Sievertsen

try to normalize everything...

7919 07/22/2007 04:04 pm Henry Sudhof

Cleaning up (#13689)
Also removed the useless login box from the ACP.

7777 06/18/2007 05:12 pm Henry Sudhof

Fixing a few minor bugs; changing one language variable.

#12123
#12483
#12489
#12513

7411 04/27/2007 05:04 pm Meik Sievertsen

#10163

7384 04/22/2007 05:27 pm Meik Sievertsen

#10005, #10003, #10001, #9999, #9945, #9965, #9909, #9906, #9877, #9861, #9831, #9830, #9815, #9665, #9624

prosilver adjustments for important announcements in ucp - #9995
MCP fixes for user notes/warnings - #9981
Preserving imageset values on save/edit
find a member link for Mass PM's - #9925...

7355 04/15/2007 12:59 pm Nils Adermann

- m_warn is no longer a local moderation permission
- magic urls should properly use html entities
- speed up posting on big boards, MAX query can be simplified a lot in certain cases
- user IP list should be labelled with "Other users" [Bug #9707]

7330 04/12/2007 06:20 pm Meik Sievertsen

my take on getting the bugs down... thanks to those also providing (usable) solutions to the problem. ;) Of course also to those reporting generally...

6920 01/22/2007 06:05 pm Meik Sievertsen

fixing mcp bugs by introducing a new feature to check for loaded/accessible modules/modes. If the MCP module "logs" get disabled the quick mod tools on viewtopic still show a link to the logs, this will then lead to an error message. This is not fixable. The logs should be accessible to all moderators by default.

6894 01/17/2007 07:41 pm Meik Sievertsen

ok, handled some bugs... the most important being validate_username (the variable passed to validate_data([...]array('username', [...])) and updating group listings while doing relevant group actions. Oh, and PM icons are working now. :o

6864 01/09/2007 03:01 pm dhn2

#6098
"Find a member" now supports single clicks. Thanks for Highway of Life for helping out here. :)

6787 12/21/2006 11:37 am Meik Sievertsen

- some fixes
- important bugfix for the mcp and determining allowed ids in general (if global announcements are included)

6698 12/02/2006 02:19 pm Meik Sievertsen

- a bunch of fixes
- added todos to the updater to make sure i do not forget. :)

6660 11/26/2006 03:55 pm Meik Sievertsen

- bug fixes for #5618, #5588 and #5584
- remove messenger->reset() calls (they are already performed on sending)

6650 11/24/2006 03:59 pm Meik Sievertsen

rather large update, most important things done:
- implemented provided patch/diff file for bug #5350 (Highway of Life) with some tiny changes and alterations
- more username/colour changes/fixes
- added a note about PM rule-dependant message removals so the user is not wondering too much if he can't remember his rules. :)...

6513 10/20/2006 03:48 pm Meik Sievertsen

- adjust unread query a bit to cope with large topics (thanks bart!)
- fixing some bugs
- more username_clean work

6364 09/13/2006 06:08 pm Meik Sievertsen

- fixed some bugs
- changed attachment handling a bit
- tried to remove target tags out of the code
- do not add session ids to urls for bots as well as not creating a new session on each page view for them

I bet i introduced some bugs too. ;)

6321 08/28/2006 07:20 pm Nils Adermann

- birthdays/age in user's timezone and not server's local time
- parse bbcode in posts with fewer characters than selected maximum on search results page
- retrieve search word context in posts which are longer than maximum characters (no raw BBCode anymore)...

6263 08/11/2006 11:52 pm David M

so.... what does this thing do?

well, the super fast, ultra efficient, massively huge BBCode handling system was implemented differently on each DBMS. Although this provided the best performance, the solution was a bit hacky.

So what does this new thing do? We use base64 encoding to make everything nice and shiny, it turns into nice, safe characters that we can just jam into varchars on essentially any database. This has two implications: we must decode every bitfield we get AND we have slightly fewer IDs to work with. It goes down from 2040 BBCodes to 1512. We lose like a quarter of them :P...

6203 07/23/2006 10:59 pm grahamje

Include a link to the post by default when issuing a warning

6177 07/13/2006 02:51 pm Meik Sievertsen

- renamed the following columns:
comment -> attach_comment
new, forwarded, unread, marked, deleted -> pm_new, pm_forwarded, pm_unread, pm_marked, pm_deleted
module_name -> module_basename
value -> lang_value

- every column is now NOT NULL
- every column is now having a DEFAULT value...

6108 06/20/2006 10:32 pm grahamje

Prevent warning self

6089 06/17/2006 07:16 pm grahamje

BBCode parsing when warning

6073 06/16/2006 06:54 pm Meik Sievertsen

- removed db cache (might re-appear, but for now we do not see the need for it)
- all changes to styles/subsilver/template are purely cosmetic (no functional changes)
- cosmetics
- bugfixes
- add index to modules table
- use modules ordering code for forums too

6058 06/13/2006 11:06 pm Meik Sievertsen

make sure custom profile fields are created correctly on registration (#2225)

6052 06/12/2006 10:27 pm grahamje

Fix no avatar image - it shouldn't be set in the code but via the template

6028 06/09/2006 09:20 pm Nils Adermann

- a few adjustments to permissions, specifically with regard to global topics
- forgot to change a line in permission trace [Bug #2100]
- syntax highlighting for php5
- [Bug #2093]

6015 06/06/2006 10:53 pm Meik Sievertsen

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.

6008 06/04/2006 05:01 pm grahamje

Assign page titles within the mcp

5975 05/28/2006 04:58 pm Meik Sievertsen

- do not allow pruning founders
- do not display full path to installation in error message text (only occurence would be "header already sent" warnings)

5806 04/20/2006 01:07 pm grahamje

Fix some warnings when selecting a user
TODO: Need to look at where else this information is displayed and see about abstracting it

5790 04/17/2006 03:09 pm Meik Sievertsen

- clean up marklist calls (global function)
- added new feature: test out others permissions (admin permissions will not be copied)
- changed attachment processing by directly using the template engine
- fixed some attachment related bugs
- additional tiny fixes

5784 04/15/2006 04:48 pm Meik Sievertsen

- fixed some bugs
- made sql schemas consistent
- added correct sequences and generators to sql schemas
- extended some rows to hold more data. This solves issues with multibyte characters and too short topic titles, names, etc.
- allow multibyte characters in usernames

5765 04/06/2006 07:15 pm Meik Sievertsen

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)...

5725 03/25/2006 08:14 pm Meik Sievertsen

ok, thought about this now for too long. I think the best solution circumventing memory consumption and not introducing "hacks" is to seperate module information (and probably more in 3.2 for installation/uninstallation) from the main code.

5720 03/25/2006 05:05 pm grahamje

BBCode parser needs instantiating [#1241]

5714 03/25/2006 04:30 pm grahamje

Get user lookups working [#1281, #1282]

5705 03/23/2006 08:23 pm Nils Adermann

- some adjustments for search related config options
- one year is 365 days long (52 * 7 = 364, but we have one more day each year ;-)) [Bug #1181]
- fixed search own posts link in UCP [Bug #1163]
- corrections to timezone selection [Bug #1148]
- fix quickmod tools on post details page [Bug #1188]

5701 03/22/2006 07:48 pm Meik Sievertsen

- hopefully fixed inactive create forum input field + button for safari 2.0.2 (floating issue?)
- updated format_date calls (fixed ancient calls)
- fixed newest username setting for activating users through the admin panel

5678 03/21/2006 08:23 pm Meik Sievertsen

- a bunch of bugfixes. :P

5631 03/14/2006 09:35 pm grahamje

We now return the log_id of newly created logs. This is used by the warnings code and may prove to be of use elsewhere or in MODs

5603 03/06/2006 03:03 pm Meik Sievertsen

- 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

5531 02/06/2006 10:28 pm subblue

Little MCP bug fixes

5438 01/08/2006 07:30 pm grahamje

Auth changes for these modules as per the schema from before

5432 01/06/2006 11:38 pm grahamje

Fixing a permissions issue where a user only has local moderator rights.
David - please test to make sure it works for you as well
NB: There is still an outstanding issue on the queue module to be looked at later

5427 01/05/2006 09:35 pm grahamje

L10n of warning messages sent to the user

5333 12/14/2005 09:54 pm grahamje

Adding the ability to get a list of all users with outstanding warnings

5329 12/12/2005 10:58 pm grahamje

Clean up and abstract the code for listing warned users

5324 12/11/2005 12:08 am grahamje

Initial commit of files related to the warning system
As the comments suggest, it's not finished but I'm getting it in before
I do things to my machine