Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15455441
D16313.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D16313.diff
View Options
diff --git a/src/applications/phame/editor/PhameBlogEditor.php b/src/applications/phame/editor/PhameBlogEditor.php
--- a/src/applications/phame/editor/PhameBlogEditor.php
+++ b/src/applications/phame/editor/PhameBlogEditor.php
@@ -160,6 +160,33 @@
$error->setIsMissingFieldError(true);
$errors[] = $error;
}
+
+ foreach ($xactions as $xaction) {
+ $new = $xaction->getNewValue();
+ if (phutil_utf8_strlen($new) > 64) {
+ $errors[] = new PhabricatorApplicationTransactionValidationError(
+ $type,
+ pht('Invalid'),
+ pht(
+ 'The selected blog title is too long. The maximum length '.
+ 'of a blog title is 64 characters.'),
+ $xaction);
+ }
+ }
+ break;
+ case PhameBlogTransaction::TYPE_SUBTITLE:
+ foreach ($xactions as $xaction) {
+ $new = $xaction->getNewValue();
+ if (phutil_utf8_strlen($new) > 64) {
+ $errors[] = new PhabricatorApplicationTransactionValidationError(
+ $type,
+ pht('Invalid'),
+ pht(
+ 'The selected blog subtitle is too long. The maximum length '.
+ 'of a blog subtitle is 64 characters.'),
+ $xaction);
+ }
+ }
break;
case PhameBlogTransaction::TYPE_PARENTDOMAIN:
if (!$xactions) {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Mar 31, 12:24 AM (5 d, 20 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7727696
Default Alt Text
D16313.diff (1 KB)
Attached To
Mode
D16313: Raise human-readable error messages for overlong Phame blog titles and subtitles
Attached
Detach File
Event Timeline
Log In to Comment