summaryrefslogtreecommitdiffstats
path: root/system/libraries
diff options
context:
space:
mode:
authortrit <tritrei@gmail.com>2011-11-23 21:19:49 +0100
committertrit <tritrei@gmail.com>2011-11-23 21:19:49 +0100
commit7f42519fd156a541bdb3517b517287f3352b5e49 (patch)
tree383849563e963f912ff3327c9a6227d2ac5d684a /system/libraries
parenta15dd4f52933dff11b5b542d16d8e49a973a0e89 (diff)
Added a couple of style tweaks and a note about function change in changelog
Diffstat (limited to 'system/libraries')
-rw-r--r--system/libraries/Email.php9
1 files changed, 2 insertions, 7 deletions
diff --git a/system/libraries/Email.php b/system/libraries/Email.php
index d24a30493..e012545d9 100644
--- a/system/libraries/Email.php
+++ b/system/libraries/Email.php
@@ -418,7 +418,7 @@ class CI_Email {
* @param string
* @return void
*/
- public function attach($filename, $disposition = 'attachment', $newname=NULL)
+ public function attach($filename, $disposition = 'attachment', $newname = NULL)
{
$this->_attach_name[] = array($filename, $newname);
$this->_attach_type[] = $this->_mime_types(pathinfo($filename, PATHINFO_EXTENSION));
@@ -1152,12 +1152,7 @@ class CI_Email {
for ($i=0; $i < count($this->_attach_name); $i++)
{
$filename = $this->_attach_name[$i][0];
- $basename = $this->_attach_name[$i][1];
-
- if( ! $basename)
- {
- $basename = basename($filename);
- }
+ $basename = is_null($this->_attach_name[$i][1]) ? basename($filename) : $this->_attach_name[$i][1];
$ctype = $this->_attach_type[$i];