From 1020ac4edc46fef237db68cff8e5b640e10a7f46 Mon Sep 17 00:00:00 2001 From: Ori Livneh Date: Mon, 13 Jul 2015 00:26:44 -0700 Subject: [PATCH] Fix variable name (follows Ib2c5856d) Change-Id: I1c673110e35daa6d5e382fad0fd99d6e4daa9f73 --- includes/cache/LCStoreStaticArray.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/cache/LCStoreStaticArray.php b/includes/cache/LCStoreStaticArray.php index 6a597ca59e..fff9bab2e9 100644 --- a/includes/cache/LCStoreStaticArray.php +++ b/includes/cache/LCStoreStaticArray.php @@ -79,7 +79,7 @@ class LCStoreStaticArray implements LCStore { // [A]rray return array( 'a', array_map( function ( $v ) { return LCStoreStaticArray::encode( $v ); - }, $data ) ); + }, $value ) ); } throw new RuntimeException( 'Cannot encode ' . var_export( $value, true ) ); -- 2.20.1