From 2116805fe78609f13e90591cdfb719d26c0f332d Mon Sep 17 00:00:00 2001 From: Cameron Date: Thu, 23 Jun 2016 11:07:54 -0700 Subject: [PATCH] Increased user_image field to 255 chars to avoid issues with external URLs. --- e107_core/sql/core_sql.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_core/sql/core_sql.php b/e107_core/sql/core_sql.php index 7dc61d994..2b7fe01a8 100644 --- a/e107_core/sql/core_sql.php +++ b/e107_core/sql/core_sql.php @@ -530,7 +530,7 @@ CREATE TABLE user ( user_sess varchar(100) NOT NULL default '', user_email varchar(100) NOT NULL default '', user_signature text NOT NULL, - user_image varchar(100) NOT NULL default '', + user_image varchar(255) NOT NULL default '', user_hideemail tinyint(3) unsigned NOT NULL default '0', user_join int(10) unsigned NOT NULL default '0', user_lastvisit int(10) unsigned NOT NULL default '0',