Skip to content

Commit 963cd07

Browse files
author
Michael Babker
committed
Prepare 2.5.18
1 parent 276a203 commit 963cd07

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<authorUrl>www.joomla.org</authorUrl>
77
<copyright>(C) 2005 - 2014 Open Source Matters. All rights reserved</copyright>
88
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
9-
<version>2.5.18-dev</version>
10-
<creationDate>December 2013</creationDate>
9+
<version>2.5.18</version>
10+
<creationDate>February 2014</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

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ final class JVersion
2323
public $RELEASE = '2.5';
2424

2525
/** @var string Maintenance version. */
26-
public $DEV_LEVEL = '18-dev';
26+
public $DEV_LEVEL = '18';
2727

2828
/** @var string Development STATUS. */
29-
public $DEV_STATUS = 'Development';
29+
public $DEV_STATUS = 'Stable';
3030

3131
/** @var string Build number. */
3232
public $BUILD = '';
@@ -35,10 +35,10 @@ final class JVersion
3535
public $CODENAME = 'Ember';
3636

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

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

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

0 commit comments

Comments
 (0)