[Rt-commit] r19227 - rt/3.999/branches/config-in-db/lib/RT

sunnavy at bestpractical.com sunnavy at bestpractical.com
Thu Apr 16 08:37:57 EDT 2009


Author: sunnavy
Date: Thu Apr 16 08:37:57 2009
New Revision: 19227

Modified:
   rt/3.999/branches/config-in-db/lib/RT/Bootstrap.pm

Log:
not force convert unef to empty string

Modified: rt/3.999/branches/config-in-db/lib/RT/Bootstrap.pm
==============================================================================
--- rt/3.999/branches/config-in-db/lib/RT/Bootstrap.pm	(original)
+++ rt/3.999/branches/config-in-db/lib/RT/Bootstrap.pm	Thu Apr 16 08:37:57 2009
@@ -202,7 +202,6 @@
     *RT::Config::set = sub {
         my $key   = shift;
         my $value = shift;
-        $value = '' unless defined $value;
         my $old_value = RT->config->_get($key);
         if ( cmpStr( $value, $old_value ) != 0 ) {
             RT->config->set( $key, $value );


More information about the Rt-commit mailing list