summaryrefslogtreecommitdiff
path: root/actions/newnotice.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2009-09-29 17:25:52 -0400
committerEvan Prodromou <evan@status.net>2009-09-29 17:25:52 -0400
commit89ac81c34464b2fc4f54b643d0d95d12bac765ab (patch)
tree4e3277cb5ad9d93a61262f004a82efc14eaf7d30 /actions/newnotice.php
parent0a57d1ccee1af8570d4c83934d9ab99fa1a1dc37 (diff)
remove string-checks from code using Notice::saveNew()
Diffstat (limited to 'actions/newnotice.php')
-rw-r--r--actions/newnotice.php7
1 files changed, 0 insertions, 7 deletions
diff --git a/actions/newnotice.php b/actions/newnotice.php
index 23ec2a1b5..d5b0332f4 100644
--- a/actions/newnotice.php
+++ b/actions/newnotice.php
@@ -255,13 +255,6 @@ class NewnoticeAction extends Action
$notice = Notice::saveNew($user->id, $content_shortened, 'web', 1,
($replyto == 'false') ? null : $replyto);
- if (is_string($notice)) {
- if (isset($filename)) {
- $this->deleteFile($filename);
- }
- $this->clientError($notice);
- }
-
if (isset($mimetype)) {
$this->attachFile($notice, $fileRecord);
}