Register
phpBB.com Wiki · Home Projects Help

root / trunk / phpBB / includes / functions_admin.php

functions_admin.php

View | Annotate | Download (78.7 KB)

# Date Author Comment
8910 View | Annotate 09/23/2008 02:56 PM toonarmy

Merge in r8843, r8908, r8909

8891 View | Annotate 09/19/2008 05:42 PM acydburn

Correctly delete message attachments. (Bug #23755) Also revamped and simplified delete_attachments() – it looks like we did not touch it for a long long time.

8839 View | Annotate 09/08/2008 03:39 PM toonarmy

merge r8829, r8830, r8831, r8832, r8833, r8834, r8835, r8836, r8837, r8838

8816 View | Annotate 09/04/2008 04:04 PM acydburn

- queue trigger feature
- queued posts do not affect user_posts
- show links to MCP + queued posts in ucp and acp

8786 View | Annotate 08/24/2008 12:04 PM acydburn

Merge of the language-specific custom path change Revision #r8782

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.

8545 View | Annotate 05/04/2008 04:47 PM acydburn

some missing merges…

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

Go away evil carriage returns\!

8391 View | Annotate 02/23/2008 03:23 PM acydburn

merge revisions #r8384, #r8387, #r8388, #r8389 and #r8390

8372 View | Annotate 02/03/2008 11:19 AM davidmj

Alright, this should give some improved performance :)

This is the end of random seek access to rows. If you have a compelling reason as to why they should stay, contact me. Else, they are gone forevermore…

The following API calls are deprecated:
acm::sql_rowseek() > no replacement
$db
>sql_fetchfield($field, $rownum = false, $query_id = false) > $db>sql_fetchfield($field, $query_id = false)

Initial tests show that phpBB3 over four percent of memory against phpBB3.1 on an empty board. So far so good :)

Other cool things:
db2, MS SQL ODBC and MS SQL 2005 all use less memory because they do not need to reference the last executed query to handle random access seeks :)

P.S.
The crazy people using SVN: please report any issues with the new way we itterate through caches, I do not want to miss anything :)

8313 View | Annotate 01/07/2008 04:19 PM davidmj

- a few tiny clean ups
- a new MS SQL DBAL, it does not work so hot because of issues with the extension it depends on

8307 View | Annotate 01/06/2008 03:21 AM davidmj

the end of an era…
- MySQL < 4.1.3 support is removed
- renamed mysql4 to mysql, no need to cause confusion
- changed the cfg cacher, reduces file system lookups and include count by two on every page load

8303 View | Annotate 01/04/2008 08:54 PM davidmj

oops

8301 View | Annotate 01/04/2008 07:35 PM davidmj

Ch-ch-ch-changes
- Made us more DB independent by making many queries capability based instead of DB specific
- Finished PHP5ifying of the acm_file class, now with some (hopefully) enhancements to its performance
- Sped up viewforum considerably (also goes towards mcp_forum)

I really hope I didn’t explode CVS…

8239 View | Annotate 11/17/2007 01:14 PM acydburn

- Re-populate arrays on cache purge/save to allow re-using some functions without warnings
- fix the annoying “last page empty” bug on inactive users page.

8231 View | Annotate 11/07/2007 11:45 AM acydburn

- fix pm not_moved/removed retrieval (it was switched)
- cache db-size retrieval (saves a lot of seconds for very large boards)

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

dumdidum… sorry. ;)

8113 View | Annotate 09/26/2007 06:53 PM acydburn

#i53

8088 View | Annotate 09/13/2007 05:01 PM acydburn

- some language tweaks suggested by John
- some bug fixes
- finally adding db_tools…

8081 View | Annotate 09/06/2007 05:15 AM davidmj

I take it back!

8080 View | Annotate 09/06/2007 05:09 AM davidmj

#14370

8050 View | Annotate 08/19/2007 03:40 PM naderman

- 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]

7965 View | Annotate 07/28/2007 06:05 AM davidmj

- add database size for Firebird

7962 View | Annotate 07/27/2007 08:03 PM acydburn

do not output notices on viewing the log if log language variables changed their information between versions…

7961 View | Annotate 07/27/2007 07:33 PM acydburn

err, forgot to commit

7884 View | Annotate 07/14/2007 05:44 PM acydburn

a bunch of fixes

7789 View | Annotate 06/24/2007 02:49 PM acydburn

tweak the sql_like_expression feature a little bit to allow correct escaping

7788 View | Annotate 06/23/2007 02:16 PM acydburn

new wrapper for LIKE expressions to streamline the fixes. We actually need to adjust them for different DBMS as well as SQLite2 not supporting escaping characters in LIKE statements (which is a reason why we think about dropping sqlite support completely).

7787 View | Annotate 06/22/2007 06:47 PM kellanved

Fixing a few things for postgres. Thanks to wagnerch for researching the issue and providing a patch.
#12587

7775 View | Annotate 06/18/2007 03:08 PM davidmj

#11313

7736 View | Annotate 06/09/2007 01:11 PM acydburn

ok, mess around with the templates + fixing some bugs + adjusting headers for those files already modified to circumvent conflicts for those having their editor set to remove trailing spaces (not recommended!)

7721 View | Annotate 06/07/2007 07:58 AM davidmj

- Oracle, woe is you… I will say this much, this fixes Oracle’s handling of empty strings… We also fix custom profiles and now provide database size for Oracle…

7679 View | Annotate 05/25/2007 07:42 PM davidmj

we forgot to sync the forums that shadow topics reside in when the topic that they point to is deleted

7677 View | Annotate 05/25/2007 06:03 PM kellanved

Introduced checks to stop negative postcounts (Bug #11561, #11421)
Allow IP v4/v6 urls for remote avatars (Bug #11633)
Delete avatar files automatically (Bug #11631)
Automatically add selected columsn to group by statements in the converter (Bug #11465)

7648 View | Annotate 05/19/2007 07:45 PM kellanved

quieter – shouldn’t make a difference, but well…

7644 View | Annotate 05/19/2007 05:44 PM acydburn

Allow pre-setting language dependant data in schema_data.sql… specified with {L_*}, also create the search index on installation

7599 View | Annotate 05/16/2007 04:30 AM davidmj

make the comment true

7589 View | Annotate 05/15/2007 05:52 PM acydburn

#10942 + cron image into

tags

7504 View | Annotate 05/08/2007 02:12 AM davidmj

#10637

7502 View | Annotate 05/07/2007 11:13 PM acydburn

#10627 – revert previous permission inclusion change, forgot that that permissions_phpbb indeed need to be added as the first file.

7491 View | Annotate 05/06/2007 11:02 PM acydburn

Ok, try to fix the “re-approval on edit” bugs. Also added make_clickable to log entries as well as logging moderator edits.

7485 View | Annotate 05/06/2007 05:31 PM acydburn

#9828, #10545, #10541, #10533, #10529, #10527, #10521, #10503, #10481
- more label fixes
- simpler approach to get input cursor text

7468 View | Annotate 05/05/2007 07:15 AM davidmj

“These aren’t the droids you’re looking for.”

7466 View | Annotate 05/05/2007 06:53 AM davidmj

- changed the way we do forum accounting in phpBB, far less intensive and much faster. sync() recalculates the number of topics and posts using just the topics table instead of having to join topics and posts together. However, even this can be avoided if we know what operation is happening and an auto sync is not in action. Since MCP operations are “known”, we can provide very fast MCP operations.
- changed the way we decide if a DB gets multi value support. Old method uses switch/case, new method assumes a DB can’t unless the DB says it can via a property

I hope nothing is broken :P

7456 View | Annotate 05/04/2007 02:30 PM acydburn

added class for disabled options in ACP
E_USER_ERROR now using language keys if available [related to #10445]
UCP/MCP title tags [#10441]
Check $start parameter in viewforum [#10435]
Check for postable forum for moving user posts within users ACP [#10433]
Show error if admin tries to put forums beneath linked forums [related to #10433]
Correctly catch attachments while moving posts [#10431]
language change in install.html [#10425]
Updated AUTHORS file

7433 View | Annotate 04/30/2007 03:32 PM acydburn

“Ghost” topics in active topics list when shadow topics and corresponding topic in same resultset [#10313]
Find a member supporting hidden groups for those able to see them [#10305]
Display hidden groups for all those able to see them across the board (composing messages, viewonline)
Fix space for sending PM’s to groups
Let the permissions_phpbb file be included the same way as all other permission files [#10301]
Add request_a-z+ handling within modules_auth suggested by Pyramide. This will allow modders to directly show/hide their module in addition to !empty() $_REQUEST variables. [#10297]

7369 View | Annotate 04/17/2007 05:22 AM davidmj
  • empty log message *
7330 View | Annotate 04/12/2007 06:20 PM acydburn

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

7327 View | Annotate 04/11/2007 10:35 PM davidmj

add caching to one attachment ACP query, affix the proper TTL for a query in functions_admin

7309 View | Annotate 04/09/2007 02:57 PM davidmj
  • empty log message *
7300 View | Annotate 04/08/2007 11:32 AM davidmj

I should have sent this in a while ago O_O

7266 View | Annotate 04/02/2007 05:47 PM acydburn

some fixes…

7221 View | Annotate 03/23/2007 06:59 PM acydburn

#5181

7200 View | Annotate 03/16/2007 01:50 AM davidmj
  • empty log message *
7191 View | Annotate 03/14/2007 10:40 PM naderman

- sync now correctly handles approved posts in unapproved topics (last_post info)

7188 View | Annotate 03/14/2007 07:52 PM acydburn

- fixed a bug in syncing forums/topics in ACP
- now also syncing moved topics having no information at all (this may only be triggered while converting)

7114 View | Annotate 03/03/2007 06:41 PM acydburn

Fixing the following bugs:
#8444 (language dependent buttons no longer include the dimensions to allow bigger/smaller translated images)
#8414
#8396
#8388
#8216

thanks to bartvb and kellanved for providing possible fixes…

7109 View | Annotate 03/02/2007 08:48 PM davidmj

- update_foes() now can be given a user or a group. This should make some operations much faster

7066 View | Annotate 02/25/2007 03:05 PM davidmj

#8332

7027 View | Annotate 02/20/2007 08:07 PM davidmj

remember daivd, nobody else wants your debug code…

7026 View | Annotate 02/20/2007 04:33 PM davidmj

i feel special

7024 View | Annotate 02/20/2007 04:24 PM davidmj

#8194

7013 View | Annotate 02/19/2007 05:36 AM davidmj

now that was kinda dumb…

7012 View | Annotate 02/19/2007 05:34 AM davidmj

eh? meh.

7011 View | Annotate 02/19/2007 05:23 AM davidmj

#8186

7001 View | Annotate 02/17/2007 06:20 AM davidmj

nice…

7000 View | Annotate 02/17/2007 06:18 AM davidmj

#7840

6974 View | Annotate 02/08/2007 11:11 PM naderman

- Pruning doesn’t lower user post counts anymore [Bug #7676]
- Better resync explanations in ACP
- relative link to board shouldn’t result in an empty link [Bug #7762]
- allow spaces to define multiple classes [Bug #7700]
- forgot addslashes for password conversion [Bug #7530]
- adjusted get_post_data call in mcp_post to retrieve read tracking info [Bug #7538]
- fixed sorting in reports/queue by properly generating the pagination links [Bug #7666]
- send UTF-8 charset header in database_update.php [Bug #7564]

6970 View | Annotate 02/06/2007 08:09 PM acydburn

Some… fixes… laying around here.

6954 View | Annotate 02/01/2007 04:13 AM davidmj

- should fix some Firebird issues ( can’t believe that nobody found this until now )

6930 View | Annotate 01/26/2007 05:09 PM acydburn

- fix some oddities (doubled spaces for example)
- changed the way make_forum_select() is returning the forum list – now including skipped forums but being disabled. This should make identifying the correct forum much more easier.
- Changed some permission namings based on suggestions by the community
- Tried to comply to the permission field ordering within the language files while displaying permission sets. Hopefully it’s worth the additional processing time.
- Disable submit buttons after clicking for installation and conversions.

6915 View | Annotate 01/21/2007 07:33 PM acydburn

fixing some bugs, most being submitted grammatical/spelling errors.

6912 View | Annotate 01/20/2007 06:58 PM acydburn

- fixing some bugs
- removing utf8 characters from email files (has been discussed internally, you guys know why)
- making sure some opendir calls are checked before calling readdir.

6850 View | Annotate 01/07/2007 12:58 PM acydburn

fix for bug #6728

6846 View | Annotate 01/06/2007 08:37 PM acydburn

tiny alterations

6831 View | Annotate 01/03/2007 05:38 PM acydburn

- removed download mode selection (the column info and constants will not be removed, we or others may be able to re-use them later on)
- removing extension from physical filename for uploaded attachments (as has been suggested some time ago from our community), can still be used by using the new ‘unique_ext’ mode on file cleaning
- fixed a bug with copying attachments if copying a topic
- made sure no attachment files get removed used at another location
- changed media player “embed” code. For some this may result in no auto-resizing – though a download link has been added.

6828 View | Annotate 01/01/2007 08:01 PM davidmj

meh

6816 View | Annotate 12/27/2006 06:43 PM acydburn

Unused Code inside function update_forum_data [Bug #6606]
Copy permissions protection for groups [Bug #6594]
HTML issues in ACP [Bug #6580, #6578]
Always send the correct encoding [related to bug #6576]
Mass email fixes for first loop iteration [Bug #6570]
Extension groups to be allowed in PM’s and/or Posts [Bug #6558]
Extension allowance checking clarified (no longer using forum id 0 for private messaging)
Using request_var() array method for some variables [Bug #6556]
Added confirmation for deletion of ranks/smilies/icons/word censores [Bug #6548, #6530, #6512, #6466]
Only show postable forums in dropdown list for moving posts on forum deletion as well as correct re-indexing [Bug #6510, #6476, #6384]
Jabber password being password field in jabber settings screen [Bug #6478]
user activity language variable if viewing not own profile [Bug #6432]
Show moderator group/user-name colour [Bug #6402]
Log rank creation/updating/removing [Bug #6398]
Update check permission changed from a_ to a_board [Bug #6392]

6698 View | Annotate 12/02/2006 02:19 PM acydburn

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

6650 View | Annotate 11/24/2006 03:59 PM acydburn

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. :)
- some column changes to fix unicode issues
- bugfixes

6614 View | Annotate 11/19/2006 10:00 PM acydburn

some tiny fixes.

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)

6549 View | Annotate 11/04/2006 12:09 AM davidmj

- compress is nicer (fixed a bug :P)
- UTF-8 code is nicer (fixed a bug :P)
- new CAPTCHA. Replaced the old one for size and usability issues. The old CAPTCHA will most likely be released as a separate package

6539 View | Annotate 10/30/2006 08:51 PM acydburn

- temporarily disable x-sendfile support (we need to look into methods of checking if it is enabled/disabled or introducing a switch)
- finally allow custom permission settings files (in acp/ as well as in mods/)

6511 View | Annotate 10/19/2006 03:55 PM acydburn

Revised attachment categories a bit
Fixes for the following bugs:
#4830
#4818
#4816
#4810
#4808
#4798
#4796
#4772
#4662
#4646
#4546
#4524
#4270

I hope not having introduced additional severe errors :)

6497 View | Annotate 10/14/2006 04:56 PM acydburn

- store sql_layer directly within the layer itself
- new method sql_multi_insert to circumvent db-specific hacks
(hopefully not introduced any parsing errors)

6459 View | Annotate 10/07/2006 07:40 PM acydburn

he braces style is deprecated as of PHP 6

6436 View | Annotate 10/03/2006 08:35 PM acydburn

- extend config checking to include check for writeable path
- removed not utilized user_allow_email column from schema
- removed inactive groups (they had no use at all, since inactive users are not able to login)
The only benefit those brought are distinguish users – but this is no longer needed too due to the inactive code present. This also allows us to retain group memberships as well as default settings for users being set inactive due to profile changes.
- rewrote user_active_flip to support multiple users and a mode, as well as coping with the aforementioned changes
- implemented updated jabber class to support SRV server records and for better jabberd2 support.
- jabber errors now logged to the error log with a full transaction
- fixed user_delete calls to include usernames where possible and also update last post information correctly
- implemented additioal checks to user management to cope with common mistakes
- On installation, guess the required mysql schema as best as possible. Users now only need to decide if they want to use the mysqli extension or not (mysqli selected by default) and no longer need to know their mysql version.
- founders do not need to re-activate their account on profile changes
- remove older session if re-authentication was successful (re-authentication always assigns a new session id)
- set the cookie directly instead of using php’s function
- added inactive_remind to see which users got deactivated because of reminders (or re-activation) sent out

hopefully not introduced too many bugs – those testing with CVS releases, please concentrate on user registration, activation, profile changes (email/password)...

6420 View | Annotate 09/30/2006 05:06 PM acydburn

just realizing that it is better to limit the uses of RANGE.

6419 View | Annotate 09/30/2006 04:58 PM acydburn

- fixing a bug i am unsure about when it occurs (but it occurs). The symptoms are broken template cache files if after removing unnecessary php opening/closing tags result in statements being syntactially incorrect.
- added real syncing to forums acp (not only forum statistics rebuild)

6411 View | Annotate 09/26/2006 09:59 PM acydburn

These changes should let olympus scale a little bit better.
i haven’t adjusted the schemas but added the details to create_schema_files – david is able to build them then in line with his changes. :)

6394 View | Annotate 09/23/2006 02:27 PM grahamje

A reworking of how we handle inactive users

6366 View | Annotate 09/14/2006 04:57 PM acydburn

- Fix some bugs
- fixed retrieving of permissions if the LIKE statement is used as well as proper supporting (needs testing on mssql)

6364 View | Annotate 09/13/2006 06:08 PM acydburn

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

6360 View | Annotate 09/08/2006 08:00 PM grahamje

Next phase of last post changes + a few minor bugs

Note: This template variable is available but will not be used by default

6350 View | Annotate 09/02/2006 05:36 PM grahamje

- Fix warning removal, x – 0 = x ;)
Make sure that the cached colour information is updated when altering groups
– Also consolidate some related code at the same time

6345 View | Annotate 09/02/2006 03:33 PM acydburn

some changes/fixes

6316 View | Annotate 08/23/2006 05:46 PM acydburn

colour is a string. :)

6315 View | Annotate 08/23/2006 04:59 PM grahamje

Fix some minor bugs arising from yesterday.
Nils – I haven’t looked into the other related pages yet

6312 View | Annotate 08/22/2006 11:26 PM acydburn

some updates. Also adjusted the utf tools and normalizer more to our coding guidelines.

6309 View | Annotate 08/21/2006 05:58 PM grahamje

Initial batch of colourization changes. This includes:
– schema changes for first post and last post
– display in viewforum, search and ucp of first post
– update of database on posting
Still outstanding
– display of last post

6285 View | Annotate 08/12/2006 09:06 PM grahamje

Hide forums you can’t move posts to from within the mcp

6275 View | Annotate 08/12/2006 05:10 PM acydburn

bugfixes

6271 View | Annotate 08/12/2006 03:14 PM acydburn

sql_in_set changes

6266 View | Annotate 08/12/2006 03:58 AM naderman

- auto sync attachment topic flag [Bug #2949]
- corrected paths for templates stored in the db and filenames displayed in the template editor [Bug #3662]
- removed some useless language strings [Bug #3648]
- corrected escaping of usernames and passwords in auth modules [Bug #3696], added ldap_escape

6241 View | Annotate 08/06/2006 07:25 PM naderman

- finally making the age calculation work [Bug #3582]
- replacing all occurances of L_NONE with a more specific string [Bug #3494]
- a few corrections to html id attributes in the installer
- using correct permission in mcp_report [Bug #2471]
- allow deleting the avatar, when no upload method is enabled and hide the delete button if no avatar is set

6224 View | Annotate 08/01/2006 05:29 PM acydburn

- fixing some bugs
- shortening some db columns to meet the requirements
- correctly increase/decrease user post counts
- fix the topic title length bug(s)

6198 View | Annotate 07/20/2006 11:45 PM acydburn

- some bugfixes
- set ip_check to A.B.C. by default
- display postings in other encodings by default and present link to force the encoding as usual.

6192 View | Annotate 07/18/2006 10:34 PM grahamje

Efficiency improvement to the log viewing code
+ reverting what appears to be an accidental change to the report viewing code

6184 View | Annotate 07/15/2006 06:21 PM grahamje

Improved i18n support within log messages

6178 View | Annotate 07/14/2006 02:59 PM acydburn

add not applied sql_escape in memberlist

6152 View | Annotate 07/07/2006 08:43 PM naderman

- fixed a parse error (oops)
- pass forum_ids to search indexing functions
- fixed a bug in fulltext_native’s cache destroying

6149 View | Annotate 07/06/2006 06:46 PM acydburn

some bugfixes

6135 View | Annotate 07/01/2006 09:11 PM acydburn

- add additional auth check to the permission roles modules
- added new function to return globally used expressions (get_preg_expression($mode)). This should be very helpful in getting wide spread similar checks (regular expressions) to one place reducing the risk of forgetting to change every location if you fix one. ;) We will add additional ones later, at the moment only the email check is retrieved…
- added “active module” var to the module class returning the current active module
- changed call to image magick
- add administrator to global moderators group by default
- extend auth_option column a little bit
- other bugfixes

6115 View | Annotate 06/22/2006 06:49 PM acydburn

change ACL_NO to ACL_NEVER and ACL_UNSET to ACL_NO to let our users get what is meant on the first look.

the downside is that the information is no more accurate (permissions are still unset, defaulting to no) – someone might to overlook all explanations. :)

6114 View | Annotate 06/22/2006 05:14 PM acydburn

time to squash some bugs

6111 View | Annotate 06/21/2006 06:42 PM acydburn

disable recalculating the binary tree – this function might have a severe problem. :D And additionally it should not be needed anymore.

6081 View | Annotate 06/17/2006 01:28 PM acydburn

fix bugs #2271 and #2273

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

6055 View | Annotate 06/13/2006 05:06 PM acydburn

- added class=”radio” to all radio- and checkboxes
- make sure the database gets closed correctly in cron.php
- bugfixes

6048 View | Annotate 06/11/2006 08:13 PM acydburn

- fixed a few bugs
- added user_add() function
- check posted images ([img]) for same domain/scipt and php files
- auth_api.html updated to the coding guidelines look&feel
- introduced ability to force non page-updates (cron is using it)
- correctly resend coppa email

6042 View | Annotate 06/10/2006 06:51 PM davidmj

- BBCode bugs
- PostgreSQL now gives us database info (if you are running 8.1 or have the dbsize contrib module installed)

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

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

6019 View | Annotate 06/07/2006 08:12 PM acydburn

fix bug #2086
remove cached sql results for moderator cache table if re-applying moderators

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.

6009 View | Annotate 06/04/2006 06:30 PM naderman

- permission trace correctly uses language variables now
- updated documentation for the auth class
- use cache for “SELECT forum_name FROM phpbb_forums WHERE forum_id = X” queries everywhere and not only in functions_display
- updated the permission trace to include information about global settings overwriting local ones
- take global permissions into account for local permission results on the view permission pages for users
- only allow to change the post author with m_chgposter

6006 View | Annotate 06/03/2006 10:34 PM davidmj

DB stuff, nothing cool at all unless you use Oracle.

5995 View | Annotate 06/01/2006 03:47 PM acydburn

- create forums by default
- hide prune options if not enabled
- fixed module management enable/disable switch if in module itself
- fixed some schema errors
- adjusted $user->page array generation for developers calling scripts outside of phpBB root

5978 View | Annotate 05/28/2006 06:00 PM acydburn

- fix nasty error in functions_admin generating a fatal error on inclusion
- adjusted error reporting level to get those errors instead of just the script halting.

5974 View | Annotate 05/28/2006 05:44 AM davidmj

meh, old versions of MySQL are not cool…

5973 View | Annotate 05/27/2006 06:24 PM acydburn

- remove description from profile fields
- added disclaimer about DEBUG_EXTRA to the ACP (i think this is needed – some idiots might think it is wise to have this enabled on a production board. :) We may let it there for the Betas though, but it will be removed during the RC’s)
- some bugfixes

5944 View | Annotate 05/20/2006 04:20 PM acydburn

- actually let the user import smilies/icons paks. ;)
- fix TRUNCATE TABLE syntax (mssql does not understand TRUNCATE alone)

5933 View |