[Mapbender-commits] r9563 - trunk/mapbender/http/classes
svn_mapbender at osgeo.org
svn_mapbender at osgeo.org
Wed Aug 24 05:23:40 PDT 2016
Author: pschmidt
Date: 2016-08-24 05:23:39 -0700 (Wed, 24 Aug 2016)
New Revision: 9563
Modified:
trunk/mapbender/http/classes/class_RPCEndpoint.php
Log:
fix repalce break with return
Modified: trunk/mapbender/http/classes/class_RPCEndpoint.php
===================================================================
--- trunk/mapbender/http/classes/class_RPCEndpoint.php 2016-08-24 05:33:51 UTC (rev 9562)
+++ trunk/mapbender/http/classes/class_RPCEndpoint.php 2016-08-24 12:23:39 UTC (rev 9563)
@@ -202,7 +202,7 @@
{
$this->ajaxResponse->setSuccess(true);
$this->ajaxResponse->setMessage(_mb("No such "). $this->ObjectConf['internalName']);
- break;
+ return;
}
try{
$instance->remove();
More information about the Mapbender_commits
mailing list