summaryrefslogtreecommitdiff
path: root/smartyplugins
diff options
context:
space:
mode:
authorspiderr <spiderr@bitweaver.org>2025-05-24 18:21:13 -0400
committerspiderr <spiderr@bitweaver.org>2025-05-24 18:21:13 -0400
commita6e569c0c1dc4aae4cf9ceec64f34d51f44cd053 (patch)
tree376db37c3b9cb0e6034c9c16d808025a02e0eca3 /smartyplugins
parentc9270ef62bf714620a707a7005ccdf199293c8a9 (diff)
downloadthemes-a6e569c0c1dc4aae4cf9ceec64f34d51f44cd053.tar.gz
themes-a6e569c0c1dc4aae4cf9ceec64f34d51f44cd053.tar.bz2
themes-a6e569c0c1dc4aae4cf9ceec64f34d51f44cd053.zip
is_string check in biticon; empty/is_numeric in mAppMenu_sort
Diffstat (limited to 'smartyplugins')
-rw-r--r--smartyplugins/function.biticon.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/smartyplugins/function.biticon.php b/smartyplugins/function.biticon.php
index 92e3d95..d902e84 100644
--- a/smartyplugins/function.biticon.php
+++ b/smartyplugins/function.biticon.php
@@ -282,7 +282,7 @@ function biticon_get_cache_file( $pParams ) {
$hashstring = '';
$ihash = array( 'iforce', 'ipath', 'iname', 'iexplain', 'ipackage', 'url', 'istyle', 'id', 'style', 'onclick' );
foreach( $pParams as $param => $value ) {
- if( in_array( $param, $ihash )) {
+ if( in_array( $param, $ihash ) && is_string( $value ) ) {
$hashstring .= strtolower( $value );
}
}