mark: A photo of Mark kneeling on top of the Taal Volcano in the Philippines. It was a long hike. (Default)
Mark Smith ([staff profile] mark) wrote in [site community profile] changelog2009-05-17 05:46 pm

[dw-free] Unable to save EmailPosting information via manage/settings/?cat=mobile

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

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

Allow saving of settings with underscores.

Patch by [personal profile] afuna.

Files modified:
  • cgi-bin/LJ/Setting.pm
--------------------------------------------------------------------------------
diff -r 771de5b62ea0 -r 0f82cd2636b7 cgi-bin/LJ/Setting.pm
--- a/cgi-bin/LJ/Setting.pm	Sun May 17 17:44:18 2009 +0000
+++ b/cgi-bin/LJ/Setting.pm	Sun May 17 17:46:00 2009 +0000
@@ -64,7 +64,7 @@ sub class_from_key {
 sub class_from_key {
     my ( $val ) = @_;
 
-    my ( $class, $key ) = $val =~ /^((?:[a-zA-Z0-9]+__)+[a-zA-Z0-9]+)_([^_]+)$/;
+    my ( $class, $key ) = $val =~ /^((?:[a-zA-Z0-9]+__)+[a-zA-Z0-9]+)_(\w+)$/;
     $class =~ s/__/::/g if $class;
 
     return ( $class, $key );
--------------------------------------------------------------------------------