Fixed more template errors in order to get everything running with PHP 8.0.
Also: Fixed some PHP errors in BBCode plugin and Calender plugin. Thanks for reporting, Matthias!
This commit is contained in:
parent
15d11bd933
commit
8b5a2cbd57
@ -32,7 +32,8 @@
|
|||||||
<select name="category" class="alignleft">
|
<select name="category" class="alignleft">
|
||||||
<option label="Unfiltered" value="all">{$panelstrings.nofilter}</option>
|
<option label="Unfiltered" value="all">{$panelstrings.nofilter}</option>
|
||||||
{*html_options options=$lang.entry.flags.short selected=$smarty.request.cat*}
|
{*html_options options=$lang.entry.flags.short selected=$smarty.request.cat*}
|
||||||
{html_options options=$categories_all selected=$smarty.request.category}
|
{if isset($smarty.request.category)} {assign var=category value=$smarty.request.category} {else} {assign var=category value=""}{/if}
|
||||||
|
{html_options options=$categories_all selected=$category}
|
||||||
</select>
|
</select>
|
||||||
{html_submit name='filter' id='filter' class="alignright" value=$panelstrings.filterbtn}
|
{html_submit name='filter' id='filter' class="alignright" value=$panelstrings.filterbtn}
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
@ -191,9 +191,11 @@ function do_bbcode_img($action, $attributes, $content, $params, $node_object) {
|
|||||||
// tiffs won't be supported
|
// tiffs won't be supported
|
||||||
|
|
||||||
if (is_array($img_info)) {
|
if (is_array($img_info)) {
|
||||||
$iptc = iptcparse($img_info ["APP13"]);
|
if (isset($img_info ["APP13"])) {
|
||||||
$title = @$iptc ["2#005"] [0] ? wp_specialchars($iptc ["2#005"] [0]) : $title;
|
$iptc = iptcparse($img_info ["APP13"]);
|
||||||
$alt = isset($iptc ["2#120"] [0]) ? wp_specialchars($iptc ["2#120"] [0], 1) : $title;
|
$title = @$iptc ["2#005"] [0] ? wp_specialchars($iptc ["2#005"] [0]) : $title;
|
||||||
|
$alt = isset($iptc ["2#120"] [0]) ? wp_specialchars($iptc ["2#120"] [0], 1) : $title;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -85,9 +85,9 @@ function plugin_calendar_widget() {
|
|||||||
|
|
||||||
$days = array();
|
$days = array();
|
||||||
|
|
||||||
while ($q->hasmore($queryId)) {
|
while ($q->hasmore()) {
|
||||||
|
|
||||||
list ($id, $entry) = $q->getEntry($queryId);
|
list ($id, $entry) = $q->getEntry();
|
||||||
$date = date_from_id($id);
|
$date = date_from_id($id);
|
||||||
$d = (int) $date ['d'];
|
$d = (int) $date ['d'];
|
||||||
|
|
||||||
@ -95,8 +95,6 @@ function plugin_calendar_widget() {
|
|||||||
get_day_link($y, $m, str_pad($d, 2, '0', STR_PAD_LEFT)),
|
get_day_link($y, $m, str_pad($d, 2, '0', STR_PAD_LEFT)),
|
||||||
'linked-day'
|
'linked-day'
|
||||||
);
|
);
|
||||||
|
|
||||||
$count++;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// load plugin strings
|
// load plugin strings
|
||||||
|
Loading…
x
Reference in New Issue
Block a user