Skip to content

Commit

Permalink
Prepare 3.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsonge committed Sep 8, 2015
1 parent f8ab55e commit 6a99b5d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion administrator/manifests/files/joomla.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<authorUrl>www.joomla.org</authorUrl>
<copyright>(C) 2005 - 2015 Open Source Matters. All rights reserved</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
<version>3.4.4-rc2</version>
<version>3.4.4</version>
<creationDate>September 2015</creationDate>
<description>FILES_JOOMLA_XML_DESCRIPTION</description>

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 @@ -23,10 +23,10 @@ final class JVersion
public $RELEASE = '3.4';

/** @var string Maintenance version. */
public $DEV_LEVEL = '4-rc2';
public $DEV_LEVEL = '4';

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

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

/** @var string Release date. */
public $RELDATE = '1-September-2015';
public $RELDATE = '8-September-2015';

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

/** @var string Release timezone. */
public $RELTZ = 'GMT';
Expand Down
2 changes: 1 addition & 1 deletion modules/mod_login/tmpl/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
JHtml::_('bootstrap.tooltip');

?>
<form action="<?php echo JRoute::_(JUri::getInstance()->toString(), true, $params->get('usesecure')); ?>" method="post" id="login-form" class="form-inline">
<form action="<?php echo JRoute::_(htmlspecialchars(JUri::getInstance()->toString()), true, $params->get('usesecure')); ?>" method="post" id="login-form" class="form-inline">
<?php if ($params->get('pretext')) : ?>
<div class="pretext">
<p><?php echo $params->get('pretext'); ?></p>
Expand Down
2 changes: 1 addition & 1 deletion modules/mod_login/tmpl/default_logout.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

JHtml::_('behavior.keepalive');
?>
<form action="<?php echo JRoute::_(JUri::getInstance()->toString(), true, $params->get('usesecure')); ?>" method="post" id="login-form" class="form-vertical">
<form action="<?php echo JRoute::_(htmlspecialchars(JUri::getInstance()->toString()), true, $params->get('usesecure')); ?>" method="post" id="login-form" class="form-vertical">
<?php if ($params->get('greeting')) : ?>
<div class="login-greeting">
<?php if ($params->get('name') == 0) : {
Expand Down

0 comments on commit 6a99b5d

Please sign in to comment.