From 7c04f793c157d3cfdcfa51cb9c3beee85b798e0b Mon Sep 17 00:00:00 2001 From: Dean Smith Date: Thu, 26 Jul 2018 23:15:08 +1000 Subject: [PATCH] Fix XML query syntax - As per PR from `ycamus` at https://github.com/thybag/PHP-SharePoint-Lists-API/pull/128 --- src/Thybag/SharePointAPI.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Thybag/SharePointAPI.php b/src/Thybag/SharePointAPI.php index 844e094..4b6f296 100644 --- a/src/Thybag/SharePointAPI.php +++ b/src/Thybag/SharePointAPI.php @@ -416,7 +416,7 @@ public function read ($list_name, $limit = NULL, $query = NULL, $view = NULL, $s // If query is required if (!empty($xml_query)) { - $xml_options .= '' . $xml_query . ''; + $xml_options .= '' . $xml_query . ''; } /* @@ -1130,4 +1130,4 @@ public function getColumnVersions ($list, $id, $field) { return $this->getFieldV public function getVersions ($list, $id, $field = null) { return $this->getFieldVersions($list, $id, $field); } -} \ No newline at end of file +}