aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/install_update.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/10917] Variable used only once so delete itOliver Schramm2013-07-281-7/+1
| | | | | | | | | | | | | | | | The variable $this->unequal_version was only used once and only to display the version the package updates to. To display the version it updates to makes no sense when the update files just aren't meant to update from the current version. (It's already shown in an error message) So I deleted the variable from there. Furthermore the use of version_compare makes the variable useless in that context which is why I deleted the variable from the whole file and replaced it in the relevant if statement with the old comparison. PHPBB3-10917
* [ticket/10917] Revert use of phpbb wrapperOliver Schramm2013-07-271-1/+1
| | | | PHPBB3-10917
* Merge remote-tracking branch 'remotes/Elsensee/ticket/10917' into ↵Nathaniel Guse2013-07-251-1/+1
|\ | | | | | | | | | | | | | | | | | | develop-olympus # By Oliver Schramm # Via Oliver Schramm * remotes/Elsensee/ticket/10917: [ticket/10917] Using phpbb wrapper [ticket/10917] Fixed notice that files are out of date when updating to an unreleased version
| * [ticket/10917] Using phpbb wrapperOliver Schramm2013-07-241-1/+1
| | | | | | | | PHPBB3-10917
| * [ticket/10917] Fixed notice that files are out of date when updating to an ↵Oliver Schramm2013-07-241-1/+1
| | | | | | | | | | | | unreleased version PHPBB3-10917
* | [ticket/11062] If user's language is english there is no further work neededOliver Schramm2013-07-251-1/+1
| | | | | | | | PHPBB3-11062
* | [ticket/11062] Load new strings from user's language file if providedOliver Schramm2013-07-251-0/+7
|/ | | | PHPBB3-11062
* [ticket/11588] Also use version.phpbb.com in install_update.php.Andreas Fischer2013-06-061-1/+3
| | | | PHPBB3-11588
* [ticket/9140] Check current board version in incremental update packagesJoas Schilling2010-11-101-2/+2
| | | | | | | | | | We need to use $this->current_version in this case instead of $config['version']. Otherwise the message will be displayed after the database got updated from database_update.php. Using PHPBB_VERSION from includes/constants.php is not the right selection either, because than the message is displayed after the files got updated and are checked one last time. PHPBB3-9140
* [ticket/9140] Check current board version in incremental update packagesGabriel Vazquez2010-07-121-0/+11
| | | | | | | | Since we do not want to limit the updater functionality we only display a prominent warning when the current board version does not match the version the update files are meant to update from. PHPBB3-9140
* [ticket/9119] Respect language selection on automated update.Joas Schilling2010-05-161-17/+35
| | | | PHPBB3-9119
* Update: Store expected resulting file contents in cache and do not suggest ↵Nils Adermann2010-02-231-25/+80
| | | | | | | | | | | | further merges if the contents match, also fixes infinite merge loop [Bug #54075] If you were trying to update from 3.0.5 to 3.0.6 but were presented with a dialogue suggesting to merge the same file over and over take the install/install_update.php from 3.0.7-RC2 or current svn, and replace your 3.0.5 one with it. It works fine in 3.0.5. git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10528 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fix Bug #53965, Regression introduced in r9768 - Hardcode language for the ↵Andreas Fischer2009-11-151-1/+1
| | | | | | time being. git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10271 89ea8834-ac86-4346-8a33-228a782c2dd0
* correctly execute database update step (detect if the version the admin ↵Meik Sievertsen2009-10-091-0/+10
| | | | | | wants to update to is greater than the current version even if phpbb.com says the current version is lower than the update version) which correctly updates the database for those who forgot to enable the PHPBB_QA constant for release candidates. git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10218 89ea8834-ac86-4346-8a33-228a782c2dd0
* if preserve_cr is true and the file generated no conflict but is obviously ↵Meik Sievertsen2009-09-201-0/+7
| | | | | | not "empty" we tag it as modified because preserve_cr is the default mode for showing modifications (else the user gets a resolvable conflict and may wonder why ;)) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10167 89ea8834-ac86-4346-8a33-228a782c2dd0
* Ok, after 20+ hours i think i fixed all grave issues with the updaterMeik Sievertsen2009-09-181-90/+106
| | | | | | | | | | | | | - smaller memory footprint - better checks for already updated files - even less conflicts - fixed automatic conflict resolving after successful merges - no more conflicts for $Id$ changes - fixed skip_whitespace_changes bug where code blocks were added to diff_op_add whereby the previous or next diff_op_copy already had the change - correctly display merged files in diff view (previously it happened that the old file was used for comparision, although the new file was different/newer/merged) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10163 89ea8834-ac86-4346-8a33-228a782c2dd0
* Bugs #15809, #49215 - Allow updater to work correctly with PHP filename ↵Andreas Fischer2009-08-101-1/+7
| | | | | | | | extensions other than .php. Related revisions: r9935, r9936 git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9948 89ea8834-ac86-4346-8a33-228a782c2dd0
* Bug #49215 again.Andreas Fischer2009-08-071-1/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9936 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fix bug #49215 - Use $phpEx variable instead of hardcoded '.php'Andreas Fischer2009-08-071-2/+2
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9935 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fix bugs #46615 & #46945 - Fail gracefully if store folder is not writable ↵Andreas Fischer2009-07-171-0/+5
| | | | | | during update. git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9768 89ea8834-ac86-4346-8a33-228a782c2dd0
* late fix for #45335 (incorrect log message for update if using old updater)Meik Sievertsen2009-05-191-1/+6
| | | | | | late fix committed because change does not effect update files or patch git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9517 89ea8834-ac86-4346-8a33-228a782c2dd0
* slight change for 3.0.5 for updating.Meik Sievertsen2009-05-061-14/+5
| | | | | | | - only return auth options having 2 or more columns (does not change the outcome, the script works fine) - purge the theme after a successful update the easy way to let style.php do the job git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9510 89ea8834-ac86-4346-8a33-228a782c2dd0
* - adjust db_tools again to not remove any schema (they may be required)Meik Sievertsen2009-02-281-0/+6
| | | | | | - fill dbms version if not yet filled git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9351 89ea8834-ac86-4346-8a33-228a782c2dd0
* TortoiseMerge seems to mess up the newlines... very very annoying bug.Meik Sievertsen2009-01-131-1/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9254 89ea8834-ac86-4346-8a33-228a782c2dd0
* - Allow download of conflicting file for later reference in automatic updaterMeik Sievertsen2009-01-121-16/+34
| | | | | | | | - Default difference view is now 'inline' instead of 'side by side' - Added new option for merging differences to conflicting files in automatic updater git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9252 89ea8834-ac86-4346-8a33-228a782c2dd0
* Help the user if FTP update fails.Meik Sievertsen2008-10-251-2/+3
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9035 89ea8834-ac86-4346-8a33-228a782c2dd0
* PHP 5.3 compatibility.Marek A. R2008-08-151-10/+10
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8760 89ea8834-ac86-4346-8a33-228a782c2dd0
* One commit for those fixes having a very tiny impact (mostly only ↵Meik Sievertsen2008-01-301-3/+3
| | | | | | | | | | | | | | whitespaces or forgotten spans, etc.) Although i somehow mistakingly got #20445 and #15249 into it. :/ Removing s_watching_img from watch_topic_forum() function (Bug #20445) Changing order for post review if more than one post affected (Bug #15249) Language typos/fixes (Bug #20425, #15719, #15429, #14669, #13479) Style/Template fixes (Bug #20065, #19405, #19205, #15028, #14934, #14821, #14752, #14497, #13707, #14738) Tiny code fixes (Bug #20165, #20025, #19795, #14804) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8350 89ea8834-ac86-4346-8a33-228a782c2dd0
* seems like there is an error within the udpater, skipping the first file ↵Meik Sievertsen2007-12-121-1/+1
| | | | | | changed. This is not good(tm). For Gold, we will provide update packages for going from RC7 -> gold and RC8 -> gold. git-svn-id: file:///svn/phpbb/trunk@8276 89ea8834-ac86-4346-8a33-228a782c2dd0
* lets start thinking about the futureMeik Sievertsen2007-11-191-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@8249 89ea8834-ac86-4346-8a33-228a782c2dd0
* erm... i am very very sorry... but i think this one is responsible for the ↵Meik Sievertsen2007-10-151-1/+1
| | | | | | loops people still experience. :o git-svn-id: file:///svn/phpbb/trunk@8196 89ea8834-ac86-4346-8a33-228a782c2dd0
* ok, fought #14735 with the help from paul.Meik Sievertsen2007-10-141-6/+6
| | | | git-svn-id: file:///svn/phpbb/trunk@8189 89ea8834-ac86-4346-8a33-228a782c2dd0
* more fixes...Meik Sievertsen2007-10-141-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@8183 89ea8834-ac86-4346-8a33-228a782c2dd0
* automatic updater supporting batch-processing diffMeik Sievertsen2007-10-061-134/+323
| | | | git-svn-id: file:///svn/phpbb/trunk@8152 89ea8834-ac86-4346-8a33-228a782c2dd0
* deregister globals to install tooMeik Sievertsen2007-10-041-4/+4
| | | | git-svn-id: file:///svn/phpbb/trunk@8130 89ea8834-ac86-4346-8a33-228a782c2dd0
* it has been decided amongst the team that using glob() is bad practice, ↵Meik Sievertsen2007-07-171-21/+7
| | | | | | after determining the overall usage among projects as well as the security history of the function. git-svn-id: file:///svn/phpbb/trunk@7900 89ea8834-ac86-4346-8a33-228a782c2dd0
* a bunch of fixesMeik Sievertsen2007-07-141-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@7884 89ea8834-ac86-4346-8a33-228a782c2dd0
* allow what is stated within the changelog...Meik Sievertsen2007-07-121-6/+14
| | | | git-svn-id: file:///svn/phpbb/trunk@7874 89ea8834-ac86-4346-8a33-228a782c2dd0
* basically what is listed within the changelog. ;)Meik Sievertsen2007-07-121-0/+5
| | | | git-svn-id: file:///svn/phpbb/trunk@7872 89ea8834-ac86-4346-8a33-228a782c2dd0
* more failsafe "glob()" method.Meik Sievertsen2007-07-101-1/+20
| | | | git-svn-id: file:///svn/phpbb/trunk@7863 89ea8834-ac86-4346-8a33-228a782c2dd0
* #13207David M2007-07-101-0/+3
| | | | git-svn-id: file:///svn/phpbb/trunk@7861 89ea8834-ac86-4346-8a33-228a782c2dd0
* #13149David M2007-07-091-0/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@7850 89ea8834-ac86-4346-8a33-228a782c2dd0
* - do not include if there are no files fetched with glob()Meik Sievertsen2007-07-091-6/+74
| | | | | | | - allow options for merged files on update (merge, new file, old file) git-svn-id: file:///svn/phpbb/trunk@7848 89ea8834-ac86-4346-8a33-228a782c2dd0
* changes...Meik Sievertsen2007-07-081-2/+2
| | | | git-svn-id: file:///svn/phpbb/trunk@7842 89ea8834-ac86-4346-8a33-228a782c2dd0
* some fixes... most importantly the ability to update the board with the ↵Meik Sievertsen2007-07-011-0/+67
| | | | | | automatic files while having fsockopen disabled (instead, the update file information will be used, which may be inaccurate if the admin did a mistake). git-svn-id: file:///svn/phpbb/trunk@7818 89ea8834-ac86-4346-8a33-228a782c2dd0
* fixing bugs within the updater...Meik Sievertsen2007-06-261-3/+35
| | | | git-svn-id: file:///svn/phpbb/trunk@7798 89ea8834-ac86-4346-8a33-228a782c2dd0
* a tiny fixMeik Sievertsen2007-06-171-6/+6
| | | | git-svn-id: file:///svn/phpbb/trunk@7771 89ea8834-ac86-4346-8a33-228a782c2dd0
* ok, mess around with the templates + fixing some bugs + adjusting headers ↵Meik Sievertsen2007-06-091-0/+3
| | | | | | for those files already modified to circumvent conflicts for those having their editor set to remove trailing spaces (not recommended!) git-svn-id: file:///svn/phpbb/trunk@7736 89ea8834-ac86-4346-8a33-228a782c2dd0
* - bracket in wrong place there [Bug #11122]Nils Adermann2007-05-171-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@7626 89ea8834-ac86-4346-8a33-228a782c2dd0
* so some version_compare magic. :oMeik Sievertsen2007-05-171-2/+2
| | | | git-svn-id: file:///svn/phpbb/trunk@7621 89ea8834-ac86-4346-8a33-228a782c2dd0