mirror of
https://github.com/e107inc/e107.git
synced 2025-08-06 14:46:56 +02:00
Old uploadfile.sc removal
This commit is contained in:
@@ -1,40 +0,0 @@
|
||||
// $Id: uploadfile.sc,v 1.3 2009-08-15 15:44:37 marj_nl_fr Exp $
|
||||
|
||||
// Your <form> tag must include: enctype='multipart/form-data' - in order to work.
|
||||
// parm is the path to the upload folder.
|
||||
global $pref;
|
||||
|
||||
if(!FILE_UPLOADS)
|
||||
{
|
||||
return LAN_UPLOAD_SERVEROFF;
|
||||
}
|
||||
if(USER_AREA === TRUE && !check_class($pref['upload_class']))
|
||||
{
|
||||
return LAN_DISABLED;
|
||||
}
|
||||
|
||||
|
||||
if($parm && !is_writable($parm))
|
||||
{
|
||||
return LAN_UPLOAD_777." <b>".str_replace("../","",$parm)."</b>";
|
||||
}
|
||||
|
||||
$name = "file_userfile[]";
|
||||
//FIXME - XHTML/JS standards
|
||||
$text .="
|
||||
<!-- Upload Shortcode -->
|
||||
<div>
|
||||
<div class='field-spacer'>
|
||||
<button type='button' class='action duplicate' value='no-value' onclick=\"duplicateHTML('upline','up_container');\"><span>".LAN_UPLOAD_ADDFILE."</span></button>
|
||||
<button class='upload' type='submit' name='uploadfiles' value='no-value' onclick=\"return jsconfirm('".LAN_UPLOAD_CONFIRM."')\"><span>".LAN_UPLOAD_FILES."</span></button>
|
||||
</div>
|
||||
<div id='up_container'>
|
||||
<div id='upline' class='nowrap'>
|
||||
<input class='tbox' type='file' name='{$name}' size='40' />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End Upload Shortcode -->
|
||||
";
|
||||
|
||||
return $text;
|
Reference in New Issue
Block a user