Skip to content

Commit

Permalink
Prepare 2.5.17 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Babker committed Dec 17, 2013
1 parent c6a8611 commit 91fd776
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion administrator/includes/framework.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/*
* Installation check, and check on removal of the install directory.
*/
if (!file_exists(JPATH_CONFIGURATION.'/configuration.php') || (filesize(JPATH_CONFIGURATION.'/configuration.php') < 10) /*|| file_exists(JPATH_INSTALLATION.'/index.php')*/) {
if (!file_exists(JPATH_CONFIGURATION.'/configuration.php') || (filesize(JPATH_CONFIGURATION.'/configuration.php') < 10) || file_exists(JPATH_INSTALLATION.'/index.php')) {
header('Location: ../installation/index.php');
exit();
}
Expand Down
2 changes: 1 addition & 1 deletion administrator/manifests/files/joomla.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<copyright>(C) 2005 - 2013 Open Source Matters. All rights reserved</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
<version>2.5.17</version>
<creationDate>November 2013</creationDate>
<creationDate>December 2013</creationDate>
<description>FILES_JOOMLA_XML_DESCRIPTION</description>

<scriptfile>administrator/components/com_admin/script.php</scriptfile>
Expand Down
2 changes: 1 addition & 1 deletion includes/framework.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
// Installation check, and check on removal of the install directory.
//

if (!file_exists(JPATH_CONFIGURATION.'/configuration.php') || (filesize(JPATH_CONFIGURATION.'/configuration.php') < 10) /*|| file_exists(JPATH_INSTALLATION.'/index.php')*/) {
if (!file_exists(JPATH_CONFIGURATION.'/configuration.php') || (filesize(JPATH_CONFIGURATION.'/configuration.php') < 10) || file_exists(JPATH_INSTALLATION.'/index.php')) {

if (file_exists(JPATH_INSTALLATION.'/index.php')) {
header('Location: '.substr($_SERVER['REQUEST_URI'], 0, strpos($_SERVER['REQUEST_URI'], 'index.php')).'installation/index.php');
Expand Down
4 changes: 2 additions & 2 deletions libraries/cms/version/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ final class JVersion
public $CODENAME = 'Ember';

/** @var string Release date. */
public $RELDATE = '06-November-2013';
public $RELDATE = '18-December-2013';

/** @var string Release time. */
public $RELTIME = '22:30';
public $RELTIME = '14:30';

/** @var string Release timezone. */
public $RELTZ = 'GMT';
Expand Down

0 comments on commit 91fd776

Please sign in to comment.