From bc8ccca5c2d0dbef0d97de742ef7d9d850e7d77c Mon Sep 17 00:00:00 2001 From: Cameron Date: Thu, 26 Jul 2018 13:15:22 -0700 Subject: [PATCH] Fixes #3311 - Update routine. --- e107_admin/update_routines.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e107_admin/update_routines.php b/e107_admin/update_routines.php index 85b1b40e4..233b25b7e 100644 --- a/e107_admin/update_routines.php +++ b/e107_admin/update_routines.php @@ -575,8 +575,8 @@ function update_core_database($type = '') { if ($type !== 'do') return update_needed('Media-Manager is missing the video and audio categories and needs to be updated.'); - $sql->gen("INSERT INTO `".MPREFIX."core_media_cat` VALUES(0, '_common', '_common_video', '(Common Videos)', 'Media in this category will be available in all areas of admin. ', 253, '', 0);"); - $sql->gen("INSERT INTO `".MPREFIX."core_media_cat` VALUES(0, '_common', '_common_audio', '(Common Audio)', 'Media in this category will be available in all areas of admin. ', 253, '', 0);"); + $sql->gen("INSERT INTO `".MPREFIX."core_media_cat` VALUES(0, '_common', '_common_video', '(Common Videos)', '', 'Media in this category will be available in all areas of admin. ', 253, '', 0);"); + $sql->gen("INSERT INTO `".MPREFIX."core_media_cat` VALUES(0, '_common', '_common_audio', '(Common Audio)', '', 'Media in this category will be available in all areas of admin. ', 253, '', 0);"); }