]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Maximum character limit with utf8mb4 is 191 in varchar
authorMikael Nordfeldth <mmn@hethane.se>
Fri, 17 Jul 2015 09:22:25 +0000 (11:22 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Fri, 17 Jul 2015 09:22:25 +0000 (11:22 +0200)
actions/profilesettings.php

index 7d3143d4b186507483af83288750c910a220d45e..3bdad42d9aa37fcf8a41529efa36ce6b8c5e9bdf 100644 (file)
@@ -275,9 +275,9 @@ class ProfilesettingsAction extends SettingsAction
                 // TRANS: Validation error in form for profile settings.
                 $this->showForm(_('Homepage is not a valid URL.'));
                 return;
-            } else if (!is_null($fullname) && mb_strlen($fullname) > 255) {
+            } else if (!is_null($fullname) && mb_strlen($fullname) > 191) {
                 // TRANS: Validation error in form for profile settings.
-                $this->showForm(_('Full name is too long (maximum 255 characters).'));
+                $this->showForm(_('Full name is too long (maximum 191 characters).'));
                 return;
             } else if (Profile::bioTooLong($bio)) {
                 // TRANS: Validation error in form for profile settings.
@@ -288,9 +288,9 @@ class ProfilesettingsAction extends SettingsAction
                                            Profile::maxBio()),
                                         Profile::maxBio()));
                 return;
-            } else if (!is_null($location) && mb_strlen($location) > 255) {
+            } else if (!is_null($location) && mb_strlen($location) > 191) {
                 // TRANS: Validation error in form for profile settings.
-                $this->showForm(_('Location is too long (maximum 255 characters).'));
+                $this->showForm(_('Location is too long (maximum 191 characters).'));
                 return;
             }  else if (is_null($timezone) || !in_array($timezone, DateTimeZone::listIdentifiers())) {
                 // TRANS: Validation error in form for profile settings.