maj version dans config.xml
[mtweb] / index.php
1 <?php
2
3   require "mw/mw_app.php";
4   $app = new mw_app("pathes.php", true);
5
6   if(($res = $app->init()) !== true){
7     echo $res;
8     return;
9   }
10
11   $app->run(isset($_GET[$app->param("e")]) ? $_GET[$app->param("e")] : "");
12   $app->display();