aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* - forgot a few places :PDavid M2007-02-194-5/+5
| | | | git-svn-id: file:///svn/phpbb/trunk@7010 89ea8834-ac86-4346-8a33-228a782c2dd0
* - clean up mssql and mssql_odbc, mssql now uses a different method of ↵David M2007-02-1912-39/+36
| | | | | | | | | | | | | dealing with IDENTITY - clean up firebird, I will consider changing it to use fetch array instead of fetch object. it's identity code already uses this method as of right... now :D - fix a tiny bug in MySQL's driver (remember to pass the connect id to all DBAL functions) - add new_link as a new param for sql_connect. This allows you to make connections that are not dependant on each other. This is done for our friends mysql, mssql, postgresql and oracle. Now for everybody else.. (I said this was clever ;) MySQLi and SQLite should always spawn a new connection when you call it while mssql_odbc and firebird both will create new links if you give them different params (different creds) than the previous connection(s). Thus we can always promise new links :D - fixed a bug in the converter - cleaned up the dbal a little git-svn-id: file:///svn/phpbb/trunk@7009 89ea8834-ac86-4346-8a33-228a782c2dd0
* - PHP4's mbstring is stupid stupid stupidDavid M2007-02-181-4/+20
| | | | git-svn-id: file:///svn/phpbb/trunk@7008 89ea8834-ac86-4346-8a33-228a782c2dd0
* fixing some bugsMeik Sievertsen2007-02-1827-152/+257
| | | | | | | | more mcp links for easier moderating different aspects (all, forum, topic) i may have introduced new bugs with this commit due to me having fixed some things weeks ago and some code changed in between - please report if you see something not working as expected. git-svn-id: file:///svn/phpbb/trunk@7007 89ea8834-ac86-4346-8a33-228a782c2dd0
* - IE7 should now work tooDavid M2007-02-171-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@7006 89ea8834-ac86-4346-8a33-228a782c2dd0
* #8160David M2007-02-173-5/+15
| | | | git-svn-id: file:///svn/phpbb/trunk@7005 89ea8834-ac86-4346-8a33-228a782c2dd0
* #8082David M2007-02-173-5/+5
| | | | git-svn-id: file:///svn/phpbb/trunk@7004 89ea8834-ac86-4346-8a33-228a782c2dd0
* #8006David M2007-02-177-537/+543
| | | | git-svn-id: file:///svn/phpbb/trunk@7003 89ea8834-ac86-4346-8a33-228a782c2dd0
* - fixed a referencing problem with objects (PHP4/5 conflict)Nils Adermann2007-02-173-10/+24
| | | | | | | - user_group_auth can take data from both target and source database git-svn-id: file:///svn/phpbb/trunk@7002 89ea8834-ac86-4346-8a33-228a782c2dd0
* nice...David M2007-02-171-3/+3
| | | | git-svn-id: file:///svn/phpbb/trunk@7001 89ea8834-ac86-4346-8a33-228a782c2dd0
* #7840David M2007-02-171-12/+29
| | | | git-svn-id: file:///svn/phpbb/trunk@7000 89ea8834-ac86-4346-8a33-228a782c2dd0
* - used wrong heuristic to measure if we were done, using a different one now.David M2007-02-171-9/+9
| | | | git-svn-id: file:///svn/phpbb/trunk@6999 89ea8834-ac86-4346-8a33-228a782c2dd0
* #8090David M2007-02-171-2/+2
| | | | git-svn-id: file:///svn/phpbb/trunk@6998 89ea8834-ac86-4346-8a33-228a782c2dd0
* - finally fixed this one, IE has a bug that makes puppies cry.David M2007-02-171-3/+22
| | | | git-svn-id: file:///svn/phpbb/trunk@6997 89ea8834-ac86-4346-8a33-228a782c2dd0
* - only give DBAL options which were available in phpBB2Nils Adermann2007-02-173-11/+35
| | | | | | | - default to phpBB3 DB config git-svn-id: file:///svn/phpbb/trunk@6996 89ea8834-ac86-4346-8a33-228a782c2dd0
* - allow converting from one database to another, no need for tables to be in ↵Nils Adermann2007-02-169-606/+1071
| | | | | | | | | | | one database anylonger (this also allows switching from one DBMS that was used with phpBB2 to another DBMS supported by phpBB3 including new systems available in Olympus only) - abstracted some installation code that is now relevant to converting as well into functions_install.php (mostly DBMS selection related) - fixed a weird smiley path problem, no idea why nobody else noticed this, maybe my fix was incorrect? - forgot to commit a file last time git-svn-id: file:///svn/phpbb/trunk@6995 89ea8834-ac86-4346-8a33-228a782c2dd0
* - some stupid bugsDavid M2007-02-162-1/+7
| | | | git-svn-id: file:///svn/phpbb/trunk@6994 89ea8834-ac86-4346-8a33-228a782c2dd0
* - small mistake :-(David M2007-02-161-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@6993 89ea8834-ac86-4346-8a33-228a782c2dd0
* wrong function name :PDavid M2007-02-161-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@6992 89ea8834-ac86-4346-8a33-228a782c2dd0
* #8154David M2007-02-161-17/+16
| | | | git-svn-id: file:///svn/phpbb/trunk@6991 89ea8834-ac86-4346-8a33-228a782c2dd0
* #8146David M2007-02-161-7/+45
| | | | | | | - came up with an alternate chunking algorithm, it does not require additional calls to seek (it reads exactly what it needs to and does not need to look at the same piece of data twice) and may or may not be more optimal than the previous chunking algorithm (may be faster, may use more memory). For this reason, it is only used when the stream is not seekable (bzip2 is the only format that is not seekable) git-svn-id: file:///svn/phpbb/trunk@6990 89ea8834-ac86-4346-8a33-228a782c2dd0
* #8144David M2007-02-151-1/+8
| | | | git-svn-id: file:///svn/phpbb/trunk@6989 89ea8834-ac86-4346-8a33-228a782c2dd0
* #7570David M2007-02-151-1447/+1647
| | | | | | | | #7232 - pretty much rewrote backup/restore. whatever is not new code is refactored. Download now works properly with gzip on the fly, bzip2 is still very much not on the fly ( will to take suggestions on this ). Should *never* hit any memory issue. Loads of bug fixes, tested with every DB we support git-svn-id: file:///svn/phpbb/trunk@6988 89ea8834-ac86-4346-8a33-228a782c2dd0
* - might as well...David M2007-02-131-0/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@6987 89ea8834-ac86-4346-8a33-228a782c2dd0
* -Topic review is fast :DDavid M2007-02-131-7/+27
| | | | | | | #7894 git-svn-id: file:///svn/phpbb/trunk@6986 89ea8834-ac86-4346-8a33-228a782c2dd0
* found you!David M2007-02-131-0/+6
| | | | git-svn-id: file:///svn/phpbb/trunk@6985 89ea8834-ac86-4346-8a33-228a782c2dd0
* #8084David M2007-02-133-3/+20
| | | | git-svn-id: file:///svn/phpbb/trunk@6984 89ea8834-ac86-4346-8a33-228a782c2dd0
* #8058David M2007-02-121-4/+5
| | | | git-svn-id: file:///svn/phpbb/trunk@6983 89ea8834-ac86-4346-8a33-228a782c2dd0
* Some changes and additions, still not perfect in IE.Dominik Dröscher2007-02-121-16/+36
| | | | | | | Test it till your eyes and ears start bleeding! git-svn-id: file:///svn/phpbb/trunk@6982 89ea8834-ac86-4346-8a33-228a782c2dd0
* - reimplemented autoincrement support in the convertor, made it more genericDavid M2007-02-102-80/+39
| | | | | | | #7528 git-svn-id: file:///svn/phpbb/trunk@6980 89ea8834-ac86-4346-8a33-228a782c2dd0
* #6872Jonathan Stanley2007-02-101-3/+0
| | | | | | | Missed this one... suprised no one complained about warnings or whatever. git-svn-id: file:///svn/phpbb/trunk@6979 89ea8834-ac86-4346-8a33-228a782c2dd0
* Missed:Jonathan Stanley2007-02-091-0/+4
| | | | | | | | | | | .pagination span.page-sep { display:none; } ... for the ACP ^o^; git-svn-id: file:///svn/phpbb/trunk@6978 89ea8834-ac86-4346-8a33-228a782c2dd0
* those were missingMeik Sievertsen2007-02-092-4/+4
| | | | git-svn-id: file:///svn/phpbb/trunk@6977 89ea8834-ac86-4346-8a33-228a782c2dd0
* grrrMeik Sievertsen2007-02-091-2/+2
| | | | git-svn-id: file:///svn/phpbb/trunk@6976 89ea8834-ac86-4346-8a33-228a782c2dd0
* some fixes to be committed.Meik Sievertsen2007-02-099-32/+54
| | | | git-svn-id: file:///svn/phpbb/trunk@6975 89ea8834-ac86-4346-8a33-228a782c2dd0
* - Pruning doesn't lower user post counts anymore [Bug #7676]Nils Adermann2007-02-0811-46/+131
| | | | | | | | | | | | | - 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] git-svn-id: file:///svn/phpbb/trunk@6974 89ea8834-ac86-4346-8a33-228a782c2dd0
* adjust text for getting image dimensions as well as not suppressing warnings ↵Meik Sievertsen2007-02-077-10/+11
| | | | | | for getimagesize() git-svn-id: file:///svn/phpbb/trunk@6973 89ea8834-ac86-4346-8a33-228a782c2dd0
* fix permission bug for added categories during conversion as well as ↵Meik Sievertsen2007-02-072-2/+17
| | | | | | lowering the maximum execution limit. git-svn-id: file:///svn/phpbb/trunk@6972 89ea8834-ac86-4346-8a33-228a782c2dd0
* #7698David M2007-02-074-6/+96
| | | | | | | - small UTF-8 thing git-svn-id: file:///svn/phpbb/trunk@6971 89ea8834-ac86-4346-8a33-228a782c2dd0
* Some... fixes... laying around here.Meik Sievertsen2007-02-0611-88/+115
| | | | git-svn-id: file:///svn/phpbb/trunk@6970 89ea8834-ac86-4346-8a33-228a782c2dd0
* only some minor fixesMeik Sievertsen2007-02-058-26/+48
| | | | git-svn-id: file:///svn/phpbb/trunk@6969 89ea8834-ac86-4346-8a33-228a782c2dd0
* Blargh @_@Jonathan Stanley2007-02-051-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@6968 89ea8834-ac86-4346-8a33-228a782c2dd0
* #7796Jonathan Stanley2007-02-051-1/+1
| | | | | | | Less is more. :P git-svn-id: file:///svn/phpbb/trunk@6967 89ea8834-ac86-4346-8a33-228a782c2dd0
* eh? meh.David M2007-02-041-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@6966 89ea8834-ac86-4346-8a33-228a782c2dd0
* - added a cp1255 to UTF-8 convertorDavid M2007-02-041-0/+130
| | | | git-svn-id: file:///svn/phpbb/trunk@6965 89ea8834-ac86-4346-8a33-228a782c2dd0
* make sure the session table is empty after conversion and the current ↵Meik Sievertsen2007-02-031-1/+22
| | | | | | session being killed. This makes sure the user converting does not inherit wrong user settings becuase the 3.0.x users table being completely new. git-svn-id: file:///svn/phpbb/trunk@6964 89ea8834-ac86-4346-8a33-228a782c2dd0
* because so many 2.0.x users expect this we set every 2.0.x admin as a ↵Meik Sievertsen2007-02-031-13/+18
| | | | | | founder and full admin rights in 3.0.x. After conversion the main admin may want to remove the founder status from the other admins. Before, this only was able to be done by the first admin who was not always the one converting the board. git-svn-id: file:///svn/phpbb/trunk@6963 89ea8834-ac86-4346-8a33-228a782c2dd0
* #7618Meik Sievertsen2007-02-032-1/+11
| | | | git-svn-id: file:///svn/phpbb/trunk@6962 89ea8834-ac86-4346-8a33-228a782c2dd0
* eh? meh.David M2007-02-031-11/+6
| | | | git-svn-id: file:///svn/phpbb/trunk@6961 89ea8834-ac86-4346-8a33-228a782c2dd0
* #7742 (and some unfound bugs :D), thanks Mr_EDavid M2007-02-031-5/+5
| | | | git-svn-id: file:///svn/phpbb/trunk@6960 89ea8834-ac86-4346-8a33-228a782c2dd0