afuna: Cat under a blanket. Text: "Cats are just little people with Fur and Fangs" (Default)
afuna ([personal profile] afuna) wrote in [site community profile] changelog2009-07-05 12:38 pm

[dw-free] default value for custom filter text exceeds maxlength in Transmogrified

[commit: http://hg.dwscoalition.org/dw-free/rev/cf9a1898d7f5]

http://bugs.dwscoalition.org/show_bug.cgi?id=937

maxlength for views is now 40

Patch by [staff profile] denise.

Files modified:
  • bin/upgrading/s2layers/core2.s2
--------------------------------------------------------------------------------
diff -r cc023c368129 -r cf9a1898d7f5 bin/upgrading/s2layers/core2.s2
--- a/bin/upgrading/s2layers/core2.s2	Sun Jul 05 12:33:12 2009 +0000
+++ b/bin/upgrading/s2layers/core2.s2	Sun Jul 05 12:37:36 2009 +0000
@@ -1710,63 +1710,63 @@ set custom_css = "";
 
 property string text_view_recent {
     des = "Text used to link to the 'Recent Entries' view";
-    maxlength = 20;
+    maxlength = 40;
     "size" = 15;
     example = "Recent Posts";
 }
 property string text_view_friends {
     des = "Text used to link to the 'Reading' view";
-    maxlength = 20;
+    maxlength = 40;
     "size" = 15;
     example = "My Reading Page";
 }
 property string text_view_friends_comm {
     des = "Text used to link to the 'Reading' view for a community";
-    maxlength = 20;
+    maxlength = 40;
     "size" = 15;
     example = "Members' Journals";
 }
 property string text_view_friendsfriends {
     des = "Title of the 'Network' view";
-    maxlength = 20;
+    maxlength = 40;
     "size" = 15;
     example = "Network";
 }
 property string text_view_friends_filter {
     des = "Title of a Friends page with an unnamed filter in effect";
-    maxlength = 20;
+    maxlength = 40;
     "size" = 15;
     example = "Subscriptions (Custom filter)";
 }
 property string text_view_friendsfriends_filter {
     des = "Title of a Network page with an unnamed filter in effect";
-    maxlength = 20;
+    maxlength = 40;
     "size" = 15;
     example = "Network (Custom filter)";
 }
 property string text_view_archive {
     des = "Text used to link to the 'Archive' view";
-    maxlength = 20;
+    maxlength = 40;
     "size" = 15;
     example = "Journal Archive";
 }
 property string text_view_userinfo {
     des = "Text used to link to the 'User Information' view";
-    maxlength = 20;
+    maxlength = 40;
     "size" = 15;
     example = "My Profile";
 }
 
 property string text_view_memories {
     des = "Text used to link to the 'Memories' view";
-    maxlength = 20;
+    maxlength = 40;
     "size" = 15;
     example = "My Memories";
 }
 
 property string text_view_tags {
     des = "Text used to link to the Tags page";
-    maxlength = 20;
+    maxlength = 40;
     "size" = 15;
     example = "My Tags";
 }
--------------------------------------------------------------------------------