diff --git a/hphp/system/php/spl/datastructures/SplFixedArray.php b/hphp/system/php/spl/datastructures/SplFixedArray.php index d37121c88..f33355065 100644 --- a/hphp/system/php/spl/datastructures/SplFixedArray.php +++ b/hphp/system/php/spl/datastructures/SplFixedArray.php @@ -198,7 +198,7 @@ class SplFixedArray implements Iterator, ArrayAccess, Countable { if ($size < count($this->data)) { $this->data = array_slice($this->data, 0, $size); } else if ($size > count($this->data)) { - $this->data = array_pad($thid->data, $size, null); + $this->data = array_pad($this->data, $size, null); } }