diff options
Diffstat (limited to 'getcode.php')
-rwxr-xr-x | getcode.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/getcode.php b/getcode.php index b971d43..47cf8db 100755 --- a/getcode.php +++ b/getcode.php @@ -7,7 +7,7 @@ $result = mysql_query($query); while($row = mysql_fetch_array($result)) { if(in_array(end(explode('.', $row['filepath'])), $extensions)) { - $file = file_get_contents('../uploads/'.$row['filepath'], true); + $file = file_get_contents('../scilab_in/uploads/'.$row['filepath'], true); $data .= $file; } } |