[Rt-commit] r12335 - in rt/branches/3.8-TESTING: .

sartak at bestpractical.com sartak at bestpractical.com
Thu May 15 06:53:43 EDT 2008


Author: sartak
Date: Thu May 15 06:53:43 2008
New Revision: 12335

Modified:
   rt/branches/3.8-TESTING/   (props changed)
   rt/branches/3.8-TESTING/lib/RT/Installer.pm

Log:
 r55875 at onn:  sartak | 2008-05-15 06:50:16 -0400
 Better success/error messages in writing to site config


Modified: rt/branches/3.8-TESTING/lib/RT/Installer.pm
==============================================================================
--- rt/branches/3.8-TESTING/lib/RT/Installer.pm	(original)
+++ rt/branches/3.8-TESTING/lib/RT/Installer.pm	Thu May 15 06:53:43 2008
@@ -260,10 +260,10 @@
         }
         print $fh "1;\n";
         close $fh;
-        return ( 1, 'saved config with success' );
+        return ( 1, "Successfully saved configuration to $file." );
     }
 
-    return ( 0, "can't save config to $file: $!" );
+    return ( 0, "Cannot save configuration to $file: $!" );
 }
 
 =head1 NAME


More information about the Rt-commit mailing list