[Rt-commit] r14043 - in rt/branches/3.999-DANGEROUS: lib

sunnavy at bestpractical.com sunnavy at bestpractical.com
Sun Jul 13 22:53:08 EDT 2008


Author: sunnavy
Date: Sun Jul 13 22:53:07 2008
New Revision: 14043

Modified:
   rt/branches/3.999-DANGEROUS/   (props changed)
   rt/branches/3.999-DANGEROUS/lib/RT.pm

Log:
 r14382 at sunnavys-mb:  sunnavy | 2008-07-14 10:17:30 +0800
 we missed install_mode sub in RT.pm before


Modified: rt/branches/3.999-DANGEROUS/lib/RT.pm
==============================================================================
--- rt/branches/3.999-DANGEROUS/lib/RT.pm	(original)
+++ rt/branches/3.999-DANGEROUS/lib/RT.pm	Sun Jul 13 22:53:07 2008
@@ -55,7 +55,7 @@
 use strict;
 use warnings;
 use File::Spec ();
-use vars qw($Config $System $nobody $Handle );
+use vars qw($Config $System $nobody $Handle $_install_mode);
 our $VERSION = '3.7.14';
 
 our $BASE_PATH        = Jifty::Util->app_root;
@@ -303,6 +303,14 @@
 
 }
 
+sub install_mode {
+    my $self = shift;
+    if (@_) {
+         $_install_mode = shift;
+    }
+    return $_install_mode;
+}
+
 =head1 BUGS
 
 Please report them to rt-bugs at bestpractical.com, if you know what's


More information about the Rt-commit mailing list