Skip to content
Snippets Groups Projects
Commit 26d1ed59 authored by Patrick Barroca's avatar Patrick Barroca :grin:
Browse files

fix upgrade db backward compatibility

parent 45b32ba9
Branches
Tags
No related merge requests found
Pipeline #10660 failed with stage
in 34 minutes and 56 seconds
......@@ -506,7 +506,6 @@ class Class_Users extends Storm_Model_Abstract {
'id_panier_courant' => 0,
'settings' => '',
'statut' => 0,
'disable_newsletter' => 0,
'id_int_bib' => null];
public static function currentUserId() {
......
......@@ -247,7 +247,12 @@ class Bokeh_Engine {
public function setupStormObservers() {
Class_Journal_StormObserver::register();
try {
Class_Journal_StormObserver::register();
} catch(Exception $e) {
// ensure to never block bokeh warmup
};
return $this;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment