29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-06-26 07:13:21 +00:00

Prepare 3.2.1 development

This commit is contained in:
Michael Babker 2013-11-06 10:28:54 -06:00
parent acb7a63845
commit 334021ade4
7 changed files with 7 additions and 4 deletions

View File

@ -0,0 +1 @@
# Placeholder file for database changes for version 3.2.1

View File

@ -0,0 +1 @@
# Placeholder file for database changes for version 3.2.1

View File

@ -0,0 +1 @@
# Placeholder file for database changes for version 3.2.1

View File

@ -13,7 +13,7 @@ defined('_JEXEC') or die;
// 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'))
{

View File

@ -6,7 +6,7 @@
<authorUrl>www.joomla.org</authorUrl>
<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>3.2.0</version>
<version>3.2.1</version>
<creationDate>November 2013</creationDate>
<description>FILES_JOOMLA_XML_DESCRIPTION</description>

View File

@ -13,7 +13,7 @@ defined('_JEXEC') or die;
// 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'))
{

View File

@ -25,7 +25,7 @@ final class JVersion
public $RELEASE = '3.2';
/** @var string Maintenance version. */
public $DEV_LEVEL = '0';
public $DEV_LEVEL = '1';
/** @var string Development STATUS. */
public $DEV_STATUS = 'Stable';