WebsiteBaker 2.13.8 is now available!
R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WBhttps://forum.websitebaker.org/index.php/topic,32355.0.html
// Update image data $database->query('UPDATE `'.TABLE_PREFIX.'mod_'.$mod_name.'_images` ' .'SET `active` = '.(int)$image['active'].', ' .' `alt` = \''.$image['alt'].'\', ' .' `title` = \''.$image['title'].'\', ' .' `caption` = \''.$image['caption'].'\' ' .'WHERE `img_id` = '.(int)$img_id.' ');
With or without (int) it works for me also not.
.'SET `active` = \''.$image['active'].'\', '
Yes.Try this in line 489:Code: [Select] .'SET `active` = \''.$image['active'].'\', 'I think the field type in db is enum and expects a string.