Skip to content

Commit

Permalink
1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
iceman-fx authored Mar 28, 2024
1 parent 303b5cb commit 7d80a10
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions pages/ajax.load-catlist.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/*
Redaxo-Addon Articletemplates
Verwaltung: AJAX Loader - Kategorien
v1.0
v1.0.1
by Falko Müller @ 2024
*/

Expand Down Expand Up @@ -60,7 +60,7 @@


//SQL zwischenspeichern
//$_SESSION['as_sql_aknews_cat'] = $sql.$sql_where;
//$_SESSION['as_sql_arttmpl_cat'] = $sql.$sql_where;


//Ergebnisse nachladen
Expand All @@ -80,7 +80,7 @@
$eid = intval($db->getValue('id'));
$editPath = $addPath.'&func=update&id='.$eid;

$title = aknews_helper::maskChar(aknews_helper::textOnly($db->getValue('title'), true));
$title = arttmpl_helper::maskChar(arttmpl_helper::textOnly($db->getValue('title'), true));


//Ausgabe
Expand Down
4 changes: 2 additions & 2 deletions pages/ajax.load-defaultlist.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/*
Redaxo-Addon Articletemplates
Verwaltung: AJAX Loader - Artikelliste
v1.0
v1.0.1
by Falko Müller @ 2024
*/

Expand Down Expand Up @@ -77,7 +77,7 @@


//SQL zwischenspeichern
//$_SESSION['as_sql_aknews'] = $sql.$sql_where;
//$_SESSION['as_sql_arttmpl'] = $sql.$sql_where;


//Ergebnisse nachladen
Expand Down
6 changes: 3 additions & 3 deletions pages/cat.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/*
Redaxo-Addon Articletemplates
Verwaltung: Kategorien
v1.0
v1.0.1
by Falko Müller @ 2024
*/

Expand All @@ -21,7 +21,7 @@
$clang_id = ($clang_id <= 0) ? 1 : $clang_id;


$_SESSION['as_sbeg_aknews_cat'] = (!isset($_SESSION['as_sbeg_aknews_cat'])) ? "" : $_SESSION['as_sbeg_aknews_cat'];
$_SESSION['as_sbeg_arttmpl_cat'] = (!isset($_SESSION['as_sbeg_arttmpl_cat'])) ? "" : $_SESSION['as_sbeg_arttmpl_cat'];


//Formular dieser Seite verarbeiten
Expand Down Expand Up @@ -275,7 +275,7 @@ function getSearchParams()
<td class="td3">

<div class="input-group sbeg">
<input class="form-control" type="text" name="s_sbeg" id="s_sbeg" maxlength="50" value="<?php echo aknews_helper::maskChar($_SESSION['as_sbeg_aknews_cat']); ?>" placeholder="<?php echo $this->i18n('a1826_search_keyword'); ?>">
<input class="form-control" type="text" name="s_sbeg" id="s_sbeg" maxlength="50" value="<?php echo arttmpl_helper::maskChar($_SESSION['as_sbeg_arttmpl_cat']); ?>" placeholder="<?php echo $this->i18n('a1826_search_keyword'); ?>">
<span class="input-group-btn">
<a class="btn btn-popup form-control-btn" title="<?php echo $this->i18n('a1826_search_reset'); ?>" id="s_resetsbeg"><i class="rex-icon fa-close"></i></a>
</span>
Expand Down

0 comments on commit 7d80a10

Please sign in to comment.