supp debug dans crud et arrangements init
[mtweb] / mw / app / init / 0400_config.php
1 <?php
2
3   if($this->bdd_ready() !== true) return;
4
5   if(($config = $data->config()) === false){
6     $this->erreur("Impossible de lire la configuration en base", true);
7   }
8
9   $this->set_config($config);
10
11   $this->set_config(
12     array(
13       "start_action_params" => (
14         $this->config("start_action_params") ?
15           @unserialize($this->config("start_action_params"))
16         : array()
17       )
18     )
19   );