Skip to content

Commit 91fd776

Browse files
author
Michael Babker
committed
Prepare 2.5.17 release
1 parent c6a8611 commit 91fd776

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

administrator/includes/framework.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/*
2020
* Installation check, and check on removal of the install directory.
2121
*/
22-
if (!file_exists(JPATH_CONFIGURATION.'/configuration.php') || (filesize(JPATH_CONFIGURATION.'/configuration.php') < 10) /*|| file_exists(JPATH_INSTALLATION.'/index.php')*/) {
22+
if (!file_exists(JPATH_CONFIGURATION.'/configuration.php') || (filesize(JPATH_CONFIGURATION.'/configuration.php') < 10) || file_exists(JPATH_INSTALLATION.'/index.php')) {
2323
header('Location: ../installation/index.php');
2424
exit();
2525
}

administrator/manifests/files/joomla.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<copyright>(C) 2005 - 2013 Open Source Matters. All rights reserved</copyright>
88
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
99
<version>2.5.17</version>
10-
<creationDate>November 2013</creationDate>
10+
<creationDate>December 2013</creationDate>
1111
<description>FILES_JOOMLA_XML_DESCRIPTION</description>
1212

1313
<scriptfile>administrator/components/com_admin/script.php</scriptfile>

includes/framework.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
// Installation check, and check on removal of the install directory.
2121
//
2222

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

2525
if (file_exists(JPATH_INSTALLATION.'/index.php')) {
2626
header('Location: '.substr($_SERVER['REQUEST_URI'], 0, strpos($_SERVER['REQUEST_URI'], 'index.php')).'installation/index.php');

libraries/cms/version/version.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ final class JVersion
3535
public $CODENAME = 'Ember';
3636

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

4040
/** @var string Release time. */
41-
public $RELTIME = '22:30';
41+
public $RELTIME = '14:30';
4242

4343
/** @var string Release timezone. */
4444
public $RELTZ = 'GMT';

0 commit comments

Comments
 (0)