Check the field type 'folderlist' in a generic extension parameters:
All dropdown values are the names of the folders as always been
All dropdown values includes the full path to the folders on Windows
Joomla 3.6 and later is affected, due to changes in the file root/libraries/joomla/form/fields/folderlist.php
The line 189:
$path = JPATH_ROOT . '/' . $path;
works only for Unix paths, fails on Windows. It should be:
$path = JPATH_ROOT . '\\' . $path;
but should be fixed as:
$path = JPATH_ROOT . DIRECTORY_SEPARATOR . $path;
sent from my phone so cant search but
99% certain there is at least one if not two Pr for this already
SIR YES SIR!
On Saturday, October 15, 2016, JoeforJoomla Boy notifications@github.com
wrote:
Assign to 3.6.3 branch and fix it before the release
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
#12423 (comment),
or mute the thread
https://github.com/notifications/unsubscribe-auth/AAWfoZOUOJhtSui9nRq5hBvY7yvKAKe7ks5q0TCngaJpZM4KXy2N
.
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2016-10-15 20:02:18 |
Closed_By | ⇒ | brianteeman |
@joeforjoomla
Searching for "folderlist" in PRs (from my desktop):
https://github.com/joomla/joomla-cms/pulls?utf8=%E2%9C%93&q=folderlist
You can find a relative recent PR #11288,
which has several responces and title:
folderlist form field returning full paths on Windows (issue #11102)
Labels |
Added:
?
|
Assign to 3.6.3 branch and fix it before the release