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