@@ -59,9 +59,12 @@ |
||
| 59 | 59 | |
| 60 | 60 | , "errors": <?= $this->partial( $this->config( $this->get( 'partial-errors', 'admin/jsonadm/partials/template-errors' ), 'partials/errors-standard.php' ), array( 'errors' => $this->errors ) ); ?> |
| 61 | 61 | |
| 62 | - <?php else : ?> |
|
| 62 | + <?php else { |
|
| 63 | + : ?> |
|
| 63 | 64 | |
| 64 | - , "data": <?= json_encode( $build( $configItems, $this->param( 'id' ) ), $options ); ?> |
|
| 65 | + , "data": <?= json_encode( $build( $configItems, $this->param( 'id' ) ), $options ); |
|
| 66 | +} |
|
| 67 | +?> |
|
| 65 | 68 | |
| 66 | 69 | <?php endif; ?> |
| 67 | 70 | } |
@@ -118,16 +118,14 @@ |
||
| 118 | 118 | { |
| 119 | 119 | $response = $this->getItems( $view, $request, $response ); |
| 120 | 120 | $status = 200; |
| 121 | - } |
|
| 122 | - catch( \Aimeos\MShop\Exception $e ) |
|
| 121 | + } catch( \Aimeos\MShop\Exception $e ) |
|
| 123 | 122 | { |
| 124 | 123 | $status = 404; |
| 125 | 124 | $view->errors = array( array( |
| 126 | 125 | 'title' => $this->getContext()->getI18n()->dt( 'mshop', $e->getMessage() ), |
| 127 | 126 | 'detail' => $e->getTraceAsString(), |
| 128 | 127 | ) ); |
| 129 | - } |
|
| 130 | - catch( \Exception $e ) |
|
| 128 | + } catch( \Exception $e ) |
|
| 131 | 129 | { |
| 132 | 130 | $status = 500; |
| 133 | 131 | $view->errors = array( array( |