|
@@ -65,6 +65,7 @@ switch($_['action']){
|
|
$item = Sketch::getById($_['id']);
|
|
$item = Sketch::getById($_['id']);
|
|
|
|
|
|
if(isset($_['label'])) $item->label = $_['label'];
|
|
if(isset($_['label'])) $item->label = $_['label'];
|
|
|
|
+ $item->progress = 5;
|
|
if(isset($_['state'])) $item->state = $_['state'] == 'true';
|
|
if(isset($_['state'])) $item->state = $_['state'] == 'true';
|
|
if(isset($_['comment'])) $item->comment = $_['comment'];
|
|
if(isset($_['comment'])) $item->comment = $_['comment'];
|
|
$item->save();
|
|
$item->save();
|
|
@@ -77,9 +78,6 @@ switch($_['action']){
|
|
global $myUser,$_;
|
|
global $myUser,$_;
|
|
|
|
|
|
require_once(__DIR__.SLASH.'Sketch.class.php');
|
|
require_once(__DIR__.SLASH.'Sketch.class.php');
|
|
-
|
|
|
|
- Sketch::staticQuery('ALTER TABLE {{table}} ADD progress INTEGER;');
|
|
|
|
-
|
|
|
|
$item = Sketch::getById($_['id']);
|
|
$item = Sketch::getById($_['id']);
|
|
if($myUser->login!=$item->creator) throw new Exception("Permissions insuffisantes",403);
|
|
if($myUser->login!=$item->creator) throw new Exception("Permissions insuffisantes",403);
|
|
$item->progress = $_['progress'];
|
|
$item->progress = $_['progress'];
|