[fusion-commits] r2860 - in branches/fusion-mg26: . widgets/Search

svn_fusion at osgeo.org svn_fusion at osgeo.org
Sun Jun 29 01:18:50 PDT 2014


Author: jng
Date: 2014-06-29 01:18:50 -0700 (Sun, 29 Jun 2014)
New Revision: 2860

Modified:
   branches/fusion-mg26/
   branches/fusion-mg26/widgets/Search/Search.php
Log:
Merged revision(s) 2859 from trunk:
#611: Add int16 identity property support for search widget. Patch by morkl.
........



Property changes on: branches/fusion-mg26
___________________________________________________________________
Modified: svn:mergeinfo
   - /branches/fusion-mg24:2560
/sandbox/createruntimemap:2699-2708
/sandbox/jxlib-3.0:1957-2248
/sandbox/ol213:2801-2803
/sandbox/robust_error_handling:2818-2825
/trunk:2847,2850,2857
   + /branches/fusion-mg24:2560
/sandbox/createruntimemap:2699-2708
/sandbox/jxlib-3.0:1957-2248
/sandbox/ol213:2801-2803
/sandbox/robust_error_handling:2818-2825
/trunk:2847,2850,2857,2859

Modified: branches/fusion-mg26/widgets/Search/Search.php
===================================================================
--- branches/fusion-mg26/widgets/Search/Search.php	2014-06-29 08:18:04 UTC (rev 2859)
+++ branches/fusion-mg26/widgets/Search/Search.php	2014-06-29 08:18:50 UTC (rev 2860)
@@ -206,6 +206,9 @@
                         $idPropType = $features->GetPropertyType($id);
                         switch($idPropType)
                         {
+                            case MgPropertyType::Int16:
+                                $idProps->Add(new MgInt16Property($id, $features->GetInt16($id)));
+                                break;
                             case MgPropertyType::Int32:
                                 $idProps->Add(new MgInt32Property($id, $features->GetInt32($id)));
                                 break;



More information about the fusion-commits mailing list