Update of /cvsroot/openfirst/members
In directory sc8-pr-cvs1:/tmp/cvs-serv22712
Modified Files:
workspace.php
Added Files:
line.png
Log Message:
Add missing line image for quotas
--- NEW FILE: line.png ---
(This appears to be a binary file; contents omitted.)
Index: workspace.php
===================================================================
RCS file: /cvsroot/openfirst/members/workspace.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** workspace.php 29 Jul 2003 16:11:28 -0000 1.2
--- workspace.php 29 Jul 2003 17:39:19 -0000 1.3
***************
*** 159,163 ****
$vfs = mysql_fetch_object(mysql_query("SELECT virtfspath FROM ofirst_workspace_users WHERE user='" . $_GET["owner"] . "';"));
$fi = fopen($vfs->virtfspath . "/" . $_GET["filepath"] . "/" . $_GET["file"], 'r');
! fpassthru($fi);
fclose($fi);
echo("</textarea>
--- 159,163 ----
$vfs = mysql_fetch_object(mysql_query("SELECT virtfspath FROM ofirst_workspace_users WHERE user='" . $_GET["owner"] . "';"));
$fi = fopen($vfs->virtfspath . "/" . $_GET["filepath"] . "/" . $_GET["file"], 'r');
! htmlentities(fpassthru($fi));
fclose($fi);
echo("</textarea>
|