[Fusionforge-commits] r13393 - branches/Branch_5_1/src/plugins/scmsvn/common

Thorsten Glaser mirabilos at fusionforge.org
Thu May 19 15:48:55 CEST 2011


Author: mirabilos
Date: 2011-05-19 15:48:55 +0200 (Thu, 19 May 2011)
New Revision: 13393

Modified:
   branches/Branch_5_1/src/plugins/scmsvn/common/SVNPlugin.class.php
Log:
ah, file_exists checks for existence of directories in PHP, all clear?\226?\128?\166


Modified: branches/Branch_5_1/src/plugins/scmsvn/common/SVNPlugin.class.php
===================================================================
--- branches/Branch_5_1/src/plugins/scmsvn/common/SVNPlugin.class.php	2011-05-19 13:27:28 UTC (rev 13392)
+++ branches/Branch_5_1/src/plugins/scmsvn/common/SVNPlugin.class.php	2011-05-19 13:48:55 UTC (rev 13393)
@@ -39,7 +39,7 @@
 		$this->name = 'scmsvn';
 		$this->text = 'Subversion';
 		$this->svn_root_fs = '/scmrepos/svn';
-		if (!dir_exists($this->svn_root_fs.'/.')) {
+		if (!file_exists($this->svn_root_fs.'/.')) {
 			$this->svn_root_fs = forge_get_config('repos_path',
 			    $this->name);
 		}




More information about the Fusionforge-commits mailing list