Index: trunk/phase3/includes/ExternalStore.php |
— | — | @@ -92,6 +92,8 @@ |
93 | 93 | $url = $store->store( $params, $data ); // Try to save the object |
94 | 94 | } catch ( DBConnectionError $error ) { |
95 | 95 | $url = false; |
| 96 | + } catch( DBQueryError $error ) { |
| 97 | + $url = false; |
96 | 98 | } |
97 | 99 | if ( $url ) { |
98 | 100 | return $url; // Done! |