diff options
| author | spiderr <spiderr@bitweaver.org> | 2021-01-17 00:29:18 -0500 |
|---|---|---|
| committer | spiderr <spiderr@bitweaver.org> | 2021-01-17 00:29:18 -0500 |
| commit | 953c7cb022e7d056b506cb293c0fbe85f3cbde04 (patch) | |
| tree | c8329f16e75bfb26caf9306db575f6691356bb6d | |
| parent | ef4961a419d1cf5907bc7e26c82bae9282b6d40b (diff) | |
| download | themes-953c7cb022e7d056b506cb293c0fbe85f3cbde04.tar.gz themes-953c7cb022e7d056b506cb293c0fbe85f3cbde04.tar.bz2 themes-953c7cb022e7d056b506cb293c0fbe85f3cbde04.zip | |
PHP7 fix param order for implode
| -rw-r--r-- | smartyplugins/function.biticon.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smartyplugins/function.biticon.php b/smartyplugins/function.biticon.php index 44261e0..92e3d95 100644 --- a/smartyplugins/function.biticon.php +++ b/smartyplugins/function.biticon.php @@ -128,7 +128,7 @@ function smarty_function_biticon( $pParams, $pSmall=NULL ) { $pParams['iname'] = $pParams['ipath'].$pParams['iname']; $boom = explode( '/', $pParams['iname'] ); $pParams['iname'] = array_pop( $boom ); - $pParams['ipath'] = str_replace( "//", "/", "/".implode( $boom, '/' )."/" ); + $pParams['ipath'] = str_replace( "//", "/", "/".implode( '/', $boom )."/" ); } // if we don't have an ipath yet, we will set it here |
