From d9191b992136f701189b6927e0473be1e8660ccf Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Mon, 10 Oct 2011 05:26:43 +0000 Subject: [PATCH] changed the way a full path is composed in code_folder.php --- codepot/src/codepot/views/code_folder.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/codepot/src/codepot/views/code_folder.php b/codepot/src/codepot/views/code_folder.php index d3d2d596..86a674fc 100644 --- a/codepot/src/codepot/views/code_folder.php +++ b/codepot/src/codepot/views/code_folder.php @@ -187,7 +187,8 @@ $this->load->view ( $rownum = 0; foreach ($file['content'] as $f) { - $fullpath = $headpath . '/' . $f['name']; + //$fullpath = $headpath . '/' . $f['name']; + $fullpath = $file['fullpath'] . '/' . $f['name']; $rowclass = $rowclasses[++$rownum % 2]; if ($f['type'] === 'dir')