projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9cee6c1
)
null is the default argument here.
author
Michael M Slusarz
<slusarz@curecanti.org>
Wed, 17 Jun 2009 06:35:02 +0000
(
00:35
-0600)
committer
Michael M Slusarz
<slusarz@curecanti.org>
Wed, 17 Jun 2009 06:48:44 +0000
(
00:48
-0600)
imp/attachment.php
patch
|
blob
|
history
diff --git
a/imp/attachment.php
b/imp/attachment.php
index
9eac23c
..
753f1e1
100644
(file)
--- a/
imp/attachment.php
+++ b/
imp/attachment.php
@@
-29,9
+29,9
@@
if (!$conf['compose']['link_attachments']) {
}
// Gather required form variables.
-$mail_user = Horde_Util::getFormData('u'
, null
);
-$time_stamp = Horde_Util::getFormData('t'
, null
);
-$file_name = Horde_Util::getFormData('f'
, null
);
+$mail_user = Horde_Util::getFormData('u');
+$time_stamp = Horde_Util::getFormData('t');
+$file_name = Horde_Util::getFormData('f');
if (is_null($mail_user) || is_null($time_stamp) || is_null($file_name)) {
Horde::fatal(_("The attachment was not found."), $self_url, __LINE__);
}