From 8513f137b359599cb4ebff735635c85a2caf7b82 Mon Sep 17 00:00:00 2001
From: Kevin Thorne <kevin@enhancesoft.com>
Date: Tue, 1 Nov 2016 19:09:12 -0500
Subject: [PATCH] List Item Abbreviation

Can not update list item abbreviation because update() method is
expecting 'abbrev' key so this corrects the key.
---
 include/ajax.forms.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/ajax.forms.php b/include/ajax.forms.php
index 84b64179a..77b4638bf 100644
--- a/include/ajax.forms.php
+++ b/include/ajax.forms.php
@@ -172,7 +172,7 @@ class DynamicFormsAjaxAPI extends AjaxController {
                 $item->update([
                     'name' =>   $basic['name'],
                     'value' =>  $basic['value'],
-                    'extra' =>  $basic['extra'],
+                    'abbrev' =>  $basic['extra'],
                 ]);
             }
         }
-- 
GitLab