From 891aab9ee1fd523595398e94481e573bd830970f Mon Sep 17 00:00:00 2001 From: Diego Najar Date: Fri, 21 Sep 2018 11:34:16 +0200 Subject: [PATCH] Bug fix for remote content and field case sensitive --- bl-plugins/remote-content/plugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bl-plugins/remote-content/plugin.php b/bl-plugins/remote-content/plugin.php index 2b866117..36c689dc 100644 --- a/bl-plugins/remote-content/plugin.php +++ b/bl-plugins/remote-content/plugin.php @@ -163,7 +163,7 @@ class pluginRemoteContent extends Plugin { $explode = $explode = explode(':', $line, 2); - $field = Text::lowercase($explode[0]); + //$field = Text::lowercase($explode[0]); $field = trim($field); unset($explode[0]); $row[$field] = trim($explode[1]);