From: Michael M Slusarz Date: Tue, 30 Dec 2008 22:04:38 +0000 (-0700) Subject: Merge from CVS 1.69 X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=53b260d4caf10c8e6027af5400385aa86ea294bc;p=horde.git Merge from CVS 1.69 --- diff --git a/framework/Vcs/lib/Horde/Vcs/Cvs.php b/framework/Vcs/lib/Horde/Vcs/Cvs.php index 576530e24..20fc6764d 100644 --- a/framework/Vcs/lib/Horde/Vcs/Cvs.php +++ b/framework/Vcs/lib/Horde/Vcs/Cvs.php @@ -436,7 +436,6 @@ class Horde_Vcs_File_cvs extends Horde_Vcs_File */ public function __construct($rep, $fl, $cache = null, $quicklog = false) { - $fl .= ',v'; $this->rep = $rep; $this->name = basename($fl); $this->dir = dirname($fl); @@ -466,7 +465,7 @@ class Horde_Vcs_File_cvs extends Horde_Vcs_File $fileOb = unserialize($this->cache->get($cacheId, $ctime)); $fileOb->setRepository($this->rep); } else { - $fileOb = new Horde_Vcs_File_cvs($this->rep, $filename, $this->cache, $this->quicklog); + $fileOb = new Horde_Vcs_File_cvs($this->rep, $filename . ',v', $this->cache, $this->quicklog); $fileOb->setRepository($this->rep); if (is_a(($result = $fileOb->getBrowseInfo()), 'PEAR_Error')) { return $result;