Skip to content

Commit

Permalink
Prepare 3.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Babker committed Feb 6, 2014
1 parent 899a511 commit 07d6712
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion administrator/includes/framework.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,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')*/)
|| (filesize(JPATH_CONFIGURATION . '/configuration.php') < 10) || file_exists(JPATH_INSTALLATION . '/index.php'))
{
if (file_exists(JPATH_INSTALLATION . '/index.php'))
{
Expand Down
6 changes: 3 additions & 3 deletions administrator/manifests/files/joomla.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<extension version="3.1" type="file" method="upgrade">
<extension version="3.2" type="file" method="upgrade">
<name>files_joomla</name>
<author>Joomla! Project</author>
<authorEmail>[email protected]</authorEmail>
<authorUrl>www.joomla.org</authorUrl>
<copyright>(C) 2005 - 2014 Open Source Matters. All rights reserved</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
<version>3.2.2-dev</version>
<creationDate>December 2013</creationDate>
<version>3.2.2</version>
<creationDate>February 2014</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 @@ -13,7 +13,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')*/)
|| (filesize(JPATH_CONFIGURATION . '/configuration.php') < 10) || file_exists(JPATH_INSTALLATION . '/index.php'))
{
if (file_exists(JPATH_INSTALLATION . '/index.php'))
{
Expand Down
8 changes: 4 additions & 4 deletions libraries/cms/version/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ final class JVersion
public $RELEASE = '3.2';

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

/** @var string Development STATUS. */
public $DEV_STATUS = 'Development';
public $DEV_STATUS = 'Stable';

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

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

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

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

0 comments on commit 07d6712

Please sign in to comment.