Skip to content

Commit

Permalink
Prepare for 2.5.8 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dextercowley committed Nov 7, 2012
1 parent 96af6aa commit b95f8ac
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion administrator/includes/framework.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,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')*/) {
if (!file_exists(JPATH_CONFIGURATION.'/configuration.php') || (filesize(JPATH_CONFIGURATION.'/configuration.php') < 10) || file_exists(JPATH_INSTALLATION.'/index.php')) {
header('Location: ../installation/index.php');
exit();
}
Expand Down
2 changes: 1 addition & 1 deletion build/build.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

// Set release for each build
// Release is third digit (like '0', '1', or '2')
$release = '7';
$release = '8';

// Set path to git binary (e.g., /usr/local/git/bin/git or /urs/bin/git)
$gitPath = '/usr/bin/git';
Expand Down
1 change: 1 addition & 0 deletions components/com_users/views/login/tmpl/default_login.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

defined('_JEXEC') or die;
JHtml::_('behavior.keepalive');
JHtml::_('behavior.noframes');
?>
<div class="login<?php echo $this->pageclass_sfx?>">
<?php if ($this->params->get('show_page_heading')) : ?>
Expand Down
1 change: 1 addition & 0 deletions components/com_users/views/profile/tmpl/edit.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
JHtml::_('behavior.keepalive');
JHtml::_('behavior.tooltip');
JHtml::_('behavior.formvalidation');
JHtml::_('behavior.noframes');
//load user_profile plugin language
$lang = JFactory::getLanguage();
$lang->load( 'plg_user_profile', JPATH_ADMINISTRATOR );
Expand Down
1 change: 1 addition & 0 deletions components/com_users/views/registration/tmpl/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
JHtml::_('behavior.keepalive');
JHtml::_('behavior.tooltip');
JHtml::_('behavior.formvalidation');
JHtml::_('behavior.noframes');
?>
<div class="registration<?php echo $this->pageclass_sfx?>">
<?php if ($this->params->get('show_page_heading')) : ?>
Expand Down
1 change: 1 addition & 0 deletions components/com_users/views/reset/tmpl/complete.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

JHtml::_('behavior.keepalive');
JHtml::_('behavior.formvalidation');
JHtml::_('behavior.noframes');
?>
<div class="reset-complete<?php echo $this->pageclass_sfx?>">
<?php if ($this->params->get('show_page_heading')) : ?>
Expand Down
2 changes: 1 addition & 1 deletion includes/framework.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,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')*/) {
if (!file_exists(JPATH_CONFIGURATION.'/configuration.php') || (filesize(JPATH_CONFIGURATION.'/configuration.php') < 10) || file_exists(JPATH_INSTALLATION.'/index.php')) {

if (file_exists(JPATH_INSTALLATION.'/index.php')) {
header('Location: '.substr($_SERVER['REQUEST_URI'], 0, strpos($_SERVER['REQUEST_URI'], 'index.php')).'installation/index.php');
Expand Down
2 changes: 2 additions & 0 deletions installation/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ $ -> Language fix or change
- -> Removed
! -> Note

-------------------- 2.5.8 Stable Release [8-November-2012] ------------------

29-Oct-2012 Jean-Marie Simonet
# [#29575] Article Manager excludes identity of author

Expand Down
2 changes: 1 addition & 1 deletion libraries/cms/version/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ final class JVersion
public $CODENAME = 'Ember';

/** @var string Release date. */
public $RELDATE = '13-November-2012';
public $RELDATE = '8-November-2012';

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

0 comments on commit b95f8ac

Please sign in to comment.