Changes between Initial Version and Version 1 of Ticket #693
- Timestamp:
- 09/10/08 14:40:49 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #693 – Description
initial v1 1 AJAX Viewer Fixes for PHP and ASP.NET - Value for property is null. - MgProxyFeatureReader.GetProperty line 4481 AJAX Viewer Fixes for PHP and ASP.NET - Value for property is null. - !MgProxyFeatureReader.!GetProperty line 448 2 2 3 3 Will these changes or something like this be implemented in the next … … 8 8 9 9 PHP - Add if statement around the switch($propType) area. 10 {{{ 11 10 12 Line 158 11 13 if ($features->IsNull($propName)) … … 17 19 18 20 21 }}} 22 19 23 ASP.NET - Add if statement around the switch (propType) area. 20 24 Line 163 25 26 {{{ 27 21 28 if(features.IsNull(prop)) 22 29 { … … 25 32 else 26 33 { 34 35 }}}