Skip to content

Commit

Permalink
Merge branch 'hotfix/1.11.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
bnu committed Mar 26, 2019
2 parents 669e6fb + 9ce8d13 commit d17fbea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions classes/extravar/Extravar.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ function _getTypeValue($type, $value)
{
$value = 'http://' . $value;
}
return escpe($value, false);
return escape($value, false);

case 'tel' :
if(is_array($value))
Expand All @@ -228,7 +228,7 @@ function _getTypeValue($type, $value)
$values = array_values($values);
for($i = 0, $c = count($values); $i < $c; $i++)
{
$values[$i] = trim(escpe($values[$i], false));
$values[$i] = trim(escape($values[$i], false));
}
return $values;

Expand Down
2 changes: 1 addition & 1 deletion config/config.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
/**
* Display XE's full version.
*/
define('__XE_VERSION__', '1.11.3');
define('__XE_VERSION__', '1.11.4');
define('__XE_VERSION_ALPHA__', (stripos(__XE_VERSION__, 'alpha') !== false));
define('__XE_VERSION_BETA__', (stripos(__XE_VERSION__, 'beta') !== false));
define('__XE_VERSION_RC__', (stripos(__XE_VERSION__, 'rc') !== false));
Expand Down

0 comments on commit d17fbea

Please sign in to comment.