aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/constants.php
Commit message (Collapse)AuthorAgeFilesLines
* - overhaul of imagesetsDavid M2007-04-081-0/+1
| | | | | | | | imagesets are now "intelligently" multilingual, one may use imagesets inside of CSS files now (as well as properties like the width and height of an imageset's image) all previous styles should change their imageset.cfg to be like prosilver and subsilver2 (notice how there is now an imageset.cfg in the /en folder, there should be one for each language) git-svn-id: file:///svn/phpbb/trunk@7304 89ea8834-ac86-4346-8a33-228a782c2dd0
* - fix htmlspecialchars handling in search (search backends get specialchared ↵Nils Adermann2007-02-251-0/+1
| | | | | | | | | | | | | | | | | | | | input, and should return specialchared output), current backends strip entities anyway [includes Bug #8156] - allow cancelling search index creation/removal - custom CSS class name input too short [Bug #8328] - give an error message if a password wasn't convertable (special characters in non-standard encoding) - moved still_on_time to functions.php, used by acp_search and converter, might be useful for MODs (or complex cron scripts) - do not allow empty passwords on login - add sids to local URLs in posts (this was a really terrible bug to fix ;-)) [Bug #7892] - ignore invalid HTTP_X_FORWARDED_FOR headers (just use REMOTE_ADDR if invalid) [Bug #8314] - changed forum listing code on search page and acp_attachments [Bug #6658] - search indexing uses still_on_time(), smaller batch size (1000) and meta_refresh() instead of redirect(), this should solve a few problems [Bugs #8034, #8270] - made password requirement language strings clearer - ALPHA is not meant to be alphanumric [Bug #7764] - display bug in firefox on linux making the pagination wrap on search results page (caused by  ) git-svn-id: file:///svn/phpbb/trunk@7076 89ea8834-ac86-4346-8a33-228a782c2dd0
* - removed download mode selection (the column info and constants will not be ↵Meik Sievertsen2007-01-031-0/+1
| | | | | | | | | | | | 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. git-svn-id: file:///svn/phpbb/trunk@6831 89ea8834-ac86-4346-8a33-228a782c2dd0
* Revised attachment categories a bitMeik Sievertsen2006-10-191-1/+2
| | | | | | | | | | | | | | | | | | | | | | 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 :) git-svn-id: file:///svn/phpbb/trunk@6511 89ea8834-ac86-4346-8a33-228a782c2dd0
* Remove unused constantsGraham Eames2006-10-141-2/+0
| | | | git-svn-id: file:///svn/phpbb/trunk@6496 89ea8834-ac86-4346-8a33-228a782c2dd0
* - extend config checking to include check for writeable pathMeik Sievertsen2006-10-031-2/+1
| | | | | | | | | | | | | | | | | | | | | - 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)... git-svn-id: file:///svn/phpbb/trunk@6436 89ea8834-ac86-4346-8a33-228a782c2dd0
* A reworking of how we handle inactive usersGraham Eames2006-09-231-0/+4
| | | | git-svn-id: file:///svn/phpbb/trunk@6394 89ea8834-ac86-4346-8a33-228a782c2dd0
* - fixed some bugsMeik Sievertsen2006-09-131-0/+13
| | | | | | | | | | | - 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. ;) git-svn-id: file:///svn/phpbb/trunk@6364 89ea8834-ac86-4346-8a33-228a782c2dd0
* - some bugfixesMeik Sievertsen2006-08-281-0/+1
| | | | | | | - using E_USER_WARNING if an error occurred within the ACP (sadly not able to use it as a default for trigger_error - it seems to be hardcoded in PHP) git-svn-id: file:///svn/phpbb/trunk@6320 89ea8834-ac86-4346-8a33-228a782c2dd0
* - fixing some bugsMeik Sievertsen2006-08-021-9/+9
| | | | | | | - removed file_exists calls for auth plugins since they need to be there once set up git-svn-id: file:///svn/phpbb/trunk@6228 89ea8834-ac86-4346-8a33-228a782c2dd0
* - display age in user profile and make it available on viewtopicNils Adermann2006-07-071-0/+1
| | | | | | | | | | | | | | | - various tiny bugfixes including [Bug #2351] [Bug #2549] [Bug #2681] [Bug #3015] - strip first, then change newlines [Bug #2403] - added support for creating user profiles to the login function (makes use of user_add), triggered by LOGIN_SUCCESS_CREATE_PROFILE constant - moved newest user updating from ucp_register to user_add function - renamed the admin_ auth module function to acp_ - added initialisation code to auth_apache which checks whether it will work - added user_add support to both auth_ldap and auth_apache - some auth_ldap tweaks, should work with users deeper in the organisation structure too now - adjusted global topics in mcp_report to work like mcp_queue git-svn-id: file:///svn/phpbb/trunk@6151 89ea8834-ac86-4346-8a33-228a782c2dd0
* change ACL_NO to ACL_NEVER and ACL_UNSET to ACL_NO to let our users get what ↵Meik Sievertsen2006-06-221-2/+2
| | | | | | | | | 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. :) git-svn-id: file:///svn/phpbb/trunk@6115 89ea8834-ac86-4346-8a33-228a782c2dd0
* - removed db cache (might re-appear, but for now we do not see the need for it)Meik Sievertsen2006-06-161-1/+0
| | | | | | | | | | | - 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 git-svn-id: file:///svn/phpbb/trunk@6073 89ea8834-ac86-4346-8a33-228a782c2dd0
* ok, sorry for this. :/Meik Sievertsen2006-06-071-20/+20
| | | | | | | - cleaned up table names/constants git-svn-id: file:///svn/phpbb/trunk@6021 89ea8834-ac86-4346-8a33-228a782c2dd0
* reverting changes to the installerMeik Sievertsen2006-04-291-74/+68
| | | | | | | do not introduce a function we never call outside of common.php git-svn-id: file:///svn/phpbb/trunk@5859 89ea8834-ac86-4346-8a33-228a782c2dd0
* - fixing some bugs, containing fixes for anonymous username displays, ↵Meik Sievertsen2006-04-291-71/+72
| | | | | | eaccelerator issue, permission trace and a few smaller bugs. git-svn-id: file:///svn/phpbb/trunk@5858 89ea8834-ac86-4346-8a33-228a782c2dd0
* graham, sorry for this but i had to... ;)Meik Sievertsen2006-04-281-1/+10
| | | | | | | | - utilize common.php in installer (we only need to change one location then) - use $user->lang instead of $lang to be able to use language template vars and having consistant namings git-svn-id: file:///svn/phpbb/trunk@5855 89ea8834-ac86-4346-8a33-228a782c2dd0
* - added login error constant for various external auth failuresNils Adermann2006-04-211-0/+1
| | | | | | | | | - completed auth plugin interface (init_method, login_method, autologin_method, validate_session_method, logout_method) - updated ldap and apache auth plugins to return an info array - added apache autologin git-svn-id: file:///svn/phpbb/trunk@5815 89ea8834-ac86-4346-8a33-228a782c2dd0
* - Visual Confirmation for guest postingDavid M2006-03-281-0/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@5739 89ea8834-ac86-4346-8a33-228a782c2dd0
* blah... not neededMeik Sievertsen2006-03-121-4/+0
| | | | git-svn-id: file:///svn/phpbb/trunk@5623 89ea8834-ac86-4346-8a33-228a782c2dd0
* - streamlined reports to consist of the feature set we decided upon (Nils, ↵Meik Sievertsen2006-03-121-4/+17
| | | | | | | | | | | | | | 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 git-svn-id: file:///svn/phpbb/trunk@5622 89ea8834-ac86-4346-8a33-228a782c2dd0
* Reporting system revised. Needs some major cleanup and is missig some ↵Bart van Bragt2006-03-041-0/+4
| | | | | | functionality (assign report, some overviews, decent notifications) but the basics are there. More after the weekend :) git-svn-id: file:///svn/phpbb/trunk@5601 89ea8834-ac86-4346-8a33-228a782c2dd0
* implementing permission rolesMeik Sievertsen2006-02-221-2/+2
| | | | | | | | | | | | | - copy permissions (adding groups) - copy permissions (adding forums) - checking proper groupadd/del settings - added intro page to permissions (to give an overview and quick links) - able to select forums + subforums, single forum, all groups, all users (permission screens) - able to reset permissions (only reset input field) - fix forum deletion bug git-svn-id: file:///svn/phpbb/trunk@5574 89ea8834-ac86-4346-8a33-228a782c2dd0
* my turn to break things... harharharMeik Sievertsen2006-02-121-1/+1
| | | | | | | | | | | | | | | | | - checking in permission settings and permission masks - permission presets and documentation not finished yet - added backtrace function to determine file/line for sql errors - fixed marlist for orphan attachments/groups/logs/users - able to change anonymous user settings/permissions now - re-arranged admin permissions a bit (added some and removed some) - setting forum permissions after creating/editing forum now selects every default group (copy permisson/dropdown to be added for adding forums) - finished user permissions in users acp note: the layout for permissions might change devs: please empty the user_permissions in phpbb_users. Also, first change your auth_options table, remove all cache files and then re-set admin permissions. After having set the admin permissions you can update your modules table (else you will not see the permission tabs) - or empty the auth setting within the modules table to be able to see the permission modules (they rely on newly added permission options) git-svn-id: file:///svn/phpbb/trunk@5553 89ea8834-ac86-4346-8a33-228a782c2dd0
* Removing an unused table from the schemaGraham Eames2006-01-061-1/+0
| | | | git-svn-id: file:///svn/phpbb/trunk@5433 89ea8834-ac86-4346-8a33-228a782c2dd0
* - install style and style elementsMeik Sievertsen2006-01-021-1/+0
| | | | | | | - refresh template and style cache git-svn-id: file:///svn/phpbb/trunk@5416 89ea8834-ac86-4346-8a33-228a782c2dd0
* Initial commit of files related to the warning systemGraham Eames2005-12-101-0/+1
| | | | | | | | As the comments suggest, it's not finished but I'm getting it in before I do things to my machine git-svn-id: file:///svn/phpbb/trunk@5324 89ea8834-ac86-4346-8a33-228a782c2dd0
* - updated topic tracking codeMeik Sievertsen2005-10-191-1/+2
| | | | | | | | | - additional changes (mostly bugfixes) - bart, if you update your user table with the user_lastmark field, set it to the user_lastvisit value ;) - and last but not least, introducing some bugs in ucp main front (regarding topic tracking) git-svn-id: file:///svn/phpbb/trunk@5272 89ea8834-ac86-4346-8a33-228a782c2dd0
* - re-add constants.php for easier moddingMeik Sievertsen2005-10-021-0/+185
| | | | git-svn-id: file:///svn/phpbb/trunk@5239 89ea8834-ac86-4346-8a33-228a782c2dd0
* Gone but not forgotten ... what's not forgotten? who said that? shut up PaulPaul S. Owen2002-07-141-182/+0
| | | | git-svn-id: file:///svn/phpbb/trunk@2672 89ea8834-ac86-4346-8a33-228a782c2dd0
* Forum watch stuff ... just copied the topic watch stuff and thus needs ↵Paul S. Owen2002-04-201-0/+1
| | | | | | reviewing inline with everything else ... but something needed to be added to 2.1 :) git-svn-id: file:///svn/phpbb/trunk@2536 89ea8834-ac86-4346-8a33-228a782c2dd0
* Switch off DEBUG mode ... will have to ask users to enable this in some ↵Paul S. Owen2002-04-041-3/+3
| | | | | | cases during bug reporting but this will prevent piles of SQL being output in a few unecessary places git-svn-id: file:///svn/phpbb/trunk@2482 89ea8834-ac86-4346-8a33-228a782c2dd0
* Ok this is just me being anal again... No code changes, just file headers..the_systech2002-04-021-2/+2
| | | | git-svn-id: file:///svn/phpbb/trunk@2467 89ea8834-ac86-4346-8a33-228a782c2dd0
* Updates to overcome security issue + updates of various functions, initial ↵Paul S. Owen2002-03-181-0/+5
| | | | | | version of profile registration include ... not completed but should be functional for obvious reasons(!) git-svn-id: file:///svn/phpbb/trunk@2304 89ea8834-ac86-4346-8a33-228a782c2dd0
* Further privmsg constantPaul S. Owen2002-02-161-0/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@2172 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fix defines for warningsPaul S. Owen2002-01-251-82/+82
| | | | git-svn-id: file:///svn/phpbb/trunk@1937 89ea8834-ac86-4346-8a33-228a782c2dd0
* Add MOD user_level ... not terribly 'clean' with the permissions setup but ↵Paul S. Owen2002-01-131-0/+2
| | | | | | allows simple implementation of 'global' mod needs git-svn-id: file:///svn/phpbb/trunk@1857 89ea8834-ac86-4346-8a33-228a782c2dd0
* Added URL constant for categoriesPaul S. Owen2001-12-241-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@1678 89ea8834-ac86-4346-8a33-228a782c2dd0
* Altered for constant table namesPaul S. Owen2001-11-091-5/+2
| | | | git-svn-id: file:///svn/phpbb/trunk@1297 89ea8834-ac86-4346-8a33-228a782c2dd0
* Group control panel updates and mods + hidden group abilityPaul S. Owen2001-11-031-9/+6
| | | | git-svn-id: file:///svn/phpbb/trunk@1268 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fixed various issues and bugsPaul S. Owen2001-11-031-2/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@1260 89ea8834-ac86-4346-8a33-228a782c2dd0
* Not sure what a TALBE is..hehJames Atkinson2001-10-251-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@1246 89ea8834-ac86-4346-8a33-228a782c2dd0
* A little over half done the styles adminJames Atkinson2001-10-251-0/+1
| | | | | | | | Can do: Add new themes from cfg file, export theme data to cfg file, remove themes Cannot do: Created or edit themes git-svn-id: file:///svn/phpbb/trunk@1244 89ea8834-ac86-4346-8a33-228a782c2dd0
* Preliminary avatar gallery supportPaul S. Owen2001-10-111-1/+6
| | | | git-svn-id: file:///svn/phpbb/trunk@1173 89ea8834-ac86-4346-8a33-228a782c2dd0
* Forgot to ftp again ...Paul S. Owen2001-09-251-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@1085 89ea8834-ac86-4346-8a33-228a782c2dd0
* Updated and fixed various issues, see post in developers forum for infoPaul S. Owen2001-09-251-0/+7
| | | | git-svn-id: file:///svn/phpbb/trunk@1083 89ea8834-ac86-4346-8a33-228a782c2dd0
* Removed some trailing newlinesBart van Bragt2001-09-091-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@1016 89ea8834-ac86-4346-8a33-228a782c2dd0
* Altered layout of phpbb_config tableBart van Bragt2001-09-081-2/+2
| | | | git-svn-id: file:///svn/phpbb/trunk@1010 89ea8834-ac86-4346-8a33-228a782c2dd0
* Numerous updates and additions for polling and assorted fixes ... or bugs, ↵Paul S. Owen2001-09-061-2/+17
| | | | | | whichever they turn out to be git-svn-id: file:///svn/phpbb/trunk@987 89ea8834-ac86-4346-8a33-228a782c2dd0
* Re-added GPL disclaimersJames Atkinson2001-08-301-0/+9
| | | | git-svn-id: file:///svn/phpbb/trunk@943 89ea8834-ac86-4346-8a33-228a782c2dd0