|
From: <var...@us...> - 2017-10-09 19:40:39
|
Revision: 10040
http://sourceforge.net/p/phpwiki/code/10040
Author: vargenau
Date: 2017-10-09 19:40:36 +0000 (Mon, 09 Oct 2017)
Log Message:
-----------
getUploadFilePath() must end with a slash
Modified Paths:
--------------
trunk/lib/config.php
Modified: trunk/lib/config.php
===================================================================
--- trunk/lib/config.php 2017-10-03 17:01:36 UTC (rev 10039)
+++ trunk/lib/config.php 2017-10-09 19:40:36 UTC (rev 10040)
@@ -319,7 +319,7 @@
}
return defined('PHPWIKI_DIR')
? PHPWIKI_DIR . "/uploads/"
- : realpath(dirname(__FILE__) . "/../uploads/");
+ : realpath(dirname(__FILE__) . "/../uploads/")."/";
}
function getUploadDataPath()
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|