changed the way a full path is composed in code_folder.php
This commit is contained in:
parent
735b7810ff
commit
d9191b9921
@ -187,7 +187,8 @@ $this->load->view (
|
|||||||
$rownum = 0;
|
$rownum = 0;
|
||||||
foreach ($file['content'] as $f)
|
foreach ($file['content'] as $f)
|
||||||
{
|
{
|
||||||
$fullpath = $headpath . '/' . $f['name'];
|
//$fullpath = $headpath . '/' . $f['name'];
|
||||||
|
$fullpath = $file['fullpath'] . '/' . $f['name'];
|
||||||
|
|
||||||
$rowclass = $rowclasses[++$rownum % 2];
|
$rowclass = $rowclasses[++$rownum % 2];
|
||||||
if ($f['type'] === 'dir')
|
if ($f['type'] === 'dir')
|
||||||
|
Loading…
Reference in New Issue
Block a user