Modifications of create_image and update_image

This commit is contained in:
Yoggzo 2016-02-02 11:15:51 +01:00
parent e2dacb129e
commit ab6e45d5e1
2 changed files with 25 additions and 18 deletions

View file

@ -65,9 +65,11 @@ foreach($images as $i){
}
echo "</br>";
foreach ($list as $l) {
echo $l;
echo "</br>";
if(isset($list)){
foreach ($list as $l) {
echo $l;
echo "</br>";
}
}
// Détails Image
@ -86,8 +88,10 @@ foreach ($list as $l) {
/*
$opt_update = Array();
$opt_update['name'] = "Test";
$opt_update['tags'] = null;
$update = $image->update_image($id_image, $opt_update);
echo $update->name;
*/
?>