Skip to content

Commit 07d6712

Browse files
author
Michael Babker
committed
Prepare 3.2.2
1 parent 899a511 commit 07d6712

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

administrator/includes/framework.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
// Installation check, and check on removal of the install directory.
1515
if (!file_exists(JPATH_CONFIGURATION . '/configuration.php')
16-
|| (filesize(JPATH_CONFIGURATION . '/configuration.php') < 10) /*|| file_exists(JPATH_INSTALLATION . '/index.php')*/)
16+
|| (filesize(JPATH_CONFIGURATION . '/configuration.php') < 10) || file_exists(JPATH_INSTALLATION . '/index.php'))
1717
{
1818
if (file_exists(JPATH_INSTALLATION . '/index.php'))
1919
{

administrator/manifests/files/joomla.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<extension version="3.1" type="file" method="upgrade">
2+
<extension version="3.2" type="file" method="upgrade">
33
<name>files_joomla</name>
44
<author>Joomla! Project</author>
55
<authorEmail>[email protected]</authorEmail>
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>3.2.2-dev</version>
10-
<creationDate>December 2013</creationDate>
9+
<version>3.2.2</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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
// Installation check, and check on removal of the install directory.
1515
if (!file_exists(JPATH_CONFIGURATION . '/configuration.php')
16-
|| (filesize(JPATH_CONFIGURATION . '/configuration.php') < 10) /*|| file_exists(JPATH_INSTALLATION . '/index.php')*/)
16+
|| (filesize(JPATH_CONFIGURATION . '/configuration.php') < 10) || file_exists(JPATH_INSTALLATION . '/index.php'))
1717
{
1818
if (file_exists(JPATH_INSTALLATION . '/index.php'))
1919
{

libraries/cms/version/version.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ final class JVersion
2525
public $RELEASE = '3.2';
2626

2727
/** @var string Maintenance version. */
28-
public $DEV_LEVEL = '2-dev';
28+
public $DEV_LEVEL = '2';
2929

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

3333
/** @var string Build number. */
3434
public $BUILD = '';
@@ -37,10 +37,10 @@ final class JVersion
3737
public $CODENAME = 'Ember';
3838

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

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

4545
/** @var string Release timezone. */
4646
public $RELTZ = 'GMT';

0 commit comments

Comments
 (0)