1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-07 15:16:30 +02:00

Sort attachment file name if its in a subdirectory

This commit is contained in:
e107steved
2007-04-24 20:29:11 +00:00
parent 0f12bc2a27
commit 344ec3d9ae

View File

@@ -11,9 +11,9 @@
| GNU General Public License (http://gnu.org). | GNU General Public License (http://gnu.org).
| |
| $Source: /cvs_backup/e107_0.8/e107_handlers/phpmailer/mailout_process.php,v $ | $Source: /cvs_backup/e107_0.8/e107_handlers/phpmailer/mailout_process.php,v $
| $Revision: 1.3 $ | $Revision: 1.4 $
| $Date: 2007-02-17 18:18:50 $ | $Date: 2007-04-24 20:29:11 $
| $Author: e107coders $ | $Author: e107steved $
+----------------------------------------------------------------------------+ +----------------------------------------------------------------------------+
*/ */
require_once("../../class2.php"); require_once("../../class2.php");
@@ -116,8 +116,8 @@ if($_POST['cancel_emails']){
$attach = chop($_POST['email_attachment']); $attach = chop($_POST['email_attachment']);
if (($temp = strrchr($attach,'/')) !== FALSE) if (($temp = strrchr($attach,'/')) !== FALSE)
{ { // Just specify filename as attachment - no path
$attach = substr($attach,$temp + 1); $attach = substr($attach,1);
} }
if(is_readable(e_DOWNLOAD.$attach)) if(is_readable(e_DOWNLOAD.$attach))