[Rt-commit] r7217 - rt/branches/3.7-EXPERIMENTAL-TUNIS/lib

ruz at bestpractical.com ruz at bestpractical.com
Mon Mar 12 11:50:32 EDT 2007


Author: ruz
Date: Mon Mar 12 11:50:31 2007
New Revision: 7217

Modified:
   rt/branches/3.7-EXPERIMENTAL-TUNIS/lib/RT.pm.in

Log:
* rename RT::Handle sub into RT::DatabaseHandle as the first one conflicts with
  RT::Handle package

Modified: rt/branches/3.7-EXPERIMENTAL-TUNIS/lib/RT.pm.in
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL-TUNIS/lib/RT.pm.in	(original)
+++ rt/branches/3.7-EXPERIMENTAL-TUNIS/lib/RT.pm.in	Mon Mar 12 11:50:31 2007
@@ -132,7 +132,7 @@
 
 sub Init {
     ConnectToDatabase();
-    InitSystemObjects;
+    InitSystemObjects();
     InitClasses();
     InitLogging(); 
 }
@@ -385,7 +385,7 @@
 
 sub Config { return $Config }
 
-=head2 Handle
+=head2 DatabaseHandle
 
 Returns the current L<database handle object RT::Handle>.
 
@@ -393,7 +393,7 @@
 
 =cut
 
-sub Handle { return $Handle }
+sub DatabaseHandle { return $Handle }
 
 =head2 Logger
 


More information about the Rt-commit mailing list