diff --git a/core/Settings/SettingManager.php b/core/Settings/SettingManager.php index 3d205a74..ba78c22e 100644 --- a/core/Settings/SettingManager.php +++ b/core/Settings/SettingManager.php @@ -78,7 +78,15 @@ class SettingManager implements CallbackListener, UsageInformationAble { trigger_error($mysqli->error, E_USER_ERROR); } } - + + // Grow the size limit for plugins settings + $mysqli->query("ALTER TABLE `" . self::TABLE_SETTINGS . "` MODIFY `value` VARCHAR(500);"); + if ($mysqli->error) { + // If not Duplicate + if ($mysqli->errno !== 1060) { + trigger_error($mysqli->error, E_USER_ERROR); + } + } return $result; }