From 0f079ab390baf1323583a9dc44dfecf168511ee1 Mon Sep 17 00:00:00 2001 From: bsitu Date: Tue, 5 Aug 2014 14:23:58 -0700 Subject: [PATCH] Followup I4049b666: "Removing prefix exception for HTMLCheckMatrix" Change I4049b666 changed the way Preferences combines the prefix with the row and column for HTMLCheckMatrix, but did not adjust the corresponding code in User::getOptionFromUser(). Bug: 69146 Change-Id: I69ed9c875443ba44d1a5e12e51165ebf8d6d6a06 --- includes/User.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/User.php b/includes/User.php index fe4118782b..7e846ad301 100644 --- a/includes/User.php +++ b/includes/User.php @@ -2733,7 +2733,7 @@ class User implements IDBAccessObject { foreach ( $columns as $column ) { foreach ( $rows as $row ) { - $checkmatrixOptions["$prefix-$column-$row"] = true; + $checkmatrixOptions["$prefix$column-$row"] = true; } } -- 2.20.1