Support Home Page › Forums › Joomla Software › Easy Folder Listing Pro Plugin › Hyperlink to files inside folder › Re: Hyperlink to files inside folder
November 24, 2011 at 4:06 pm
#995
Michael Gilkes
Keymaster
@ebear. The next version will have the fix for replacing ‘\’ with ‘/’. To do it for this one, just add a this line:
1 2 |
<br /> $subfolder = str_replace('\', '/', $subfolder);<br /> |
at the beginning of formatTableFileRows method, around line 695.
You also have to go to the beginning of formatListContents method, around line 895, and add:
1 2 |
<br /> $relpath = str_replace('\', '/', $relpath);<br /> |
Hope this helps.
(I edited this post to make corrections to my previous statements. Sorry for any inconvenience)