Prevent notice in OutputPage by casting to an array. This already exists on the WMF...
[lhc/web/wiklou.git] / includes / OutputPage.php
index 13672e9..83faccc 100644 (file)
@@ -1640,7 +1640,7 @@ class OutputPage extends ContextSource {
                                $this->mVaryHeader[$header] = $option;
                        }
                }
-               $this->mVaryHeader[$header] = array_unique( $this->mVaryHeader[$header] );
+               $this->mVaryHeader[$header] = array_unique( (array)$this->mVaryHeader[$header] );
        }
 
        /**