summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--get_content_list_inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/get_content_list_inc.php b/get_content_list_inc.php
index 34ea57d..87598b1 100644
--- a/get_content_list_inc.php
+++ b/get_content_list_inc.php
@@ -3,7 +3,7 @@
* get_content_list
*
* @author Christian Fowler>
- * @version $Revision: 1.22 $
+ * @version $Revision: 1.23 $
* @package liberty
* @subpackage functions
*/
@@ -49,7 +49,7 @@ if( empty( $contentListHash ) ) {
if( !empty( $_REQUEST['output'] ) && ( $_REQUEST['output'] == 'json' || $_REQUEST['output'] == 'ajax' ) ) {
foreach( $_REQUEST as $key => $value ) {
- if( strstr( ',', $value ) ) {
+ if( strstr( $value, ',' ) ) {
$_REQUEST[$key] = explode( ",", $value );
}
}