Fix variable.
authorJan Schneider <jan@horde.org>
Tue, 24 Aug 2010 15:23:45 +0000 (17:23 +0200)
committerJan Schneider <jan@horde.org>
Tue, 24 Aug 2010 15:23:45 +0000 (17:23 +0200)
framework/Vcs/lib/Horde/Vcs/Svn.php

index c91073e..2426604 100644 (file)
@@ -124,7 +124,7 @@ class Horde_Vcs_Svn extends Horde_Vcs
      */
     public function checkout($fullname, $rev)
     {
-        $rep->assertValidRevision($rev);
+        $this->assertValidRevision($rev);
 
         if ($RCS = popen($this->getCommand() . ' cat -r ' . escapeshellarg($rev) . ' ' . escapeshellarg($fullname) . ' 2>&1', VC_WINDOWS ? 'rb' : 'r')) {
             return $RCS;