Skip to content

Commit

Permalink
Merge pull request #21 from mobilecms-pro/master
Browse files Browse the repository at this point in the history
url замена
  • Loading branch information
KpuTuK authored Apr 6, 2019
2 parents 0300e0d + bbf1139 commit 835ab99
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kernel/general_functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ function a_notice($message, $link, $timeout = 5) {
function a_confirm($message, $link_ok, $link_cancel) {
$tpl = Registry::get('tpl');
$message = str_safe($message);
$link_ok = str_safe($link_ok);
$link_cancel = str_safe($link_cancel);
$link_ok = str_safe(strtr($link_ok, '&amp', '&'));
$link_cancel = str_safe(strtr($link_cancel, '&amp', '&'));
if (empty($message))
$message = 'Подтверждаете выполнение данного действия?';

Expand Down Expand Up @@ -413,4 +413,4 @@ function url($path, $query = '', $header = FALSE) {
return $url;
}

?>
?>

0 comments on commit 835ab99

Please sign in to comment.