[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
afuna.
Files modified:
http://bugs.dwscoalition.org/show_bug.cgi?id=1223
Allow saving of settings with underscores.
Patch by
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
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 ); --------------------------------------------------------------------------------