]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
remove common_debug from newnotice
authorEvan Prodromou <evan@controlyourself.ca>
Tue, 23 Jun 2009 14:48:33 +0000 (07:48 -0700)
committerEvan Prodromou <evan@controlyourself.ca>
Tue, 23 Jun 2009 14:48:33 +0000 (07:48 -0700)
actions/newnotice.php

index a5f87d1be7f93f77be12e26b8eee91efe6ae92f1..4a2c369f0f873de20b425ef30c3b3be2589a07fc 100644 (file)
@@ -238,13 +238,9 @@ class NewnoticeAction extends Action
             }
         }
 
-        common_debug("newnotice.php - before Notice::saveNew()");
-
         $notice = Notice::saveNew($user->id, $content_shortened, 'web', 1,
                                   ($replyto == 'false') ? null : $replyto);
 
-        common_debug("newnotice.php - after Notice::saveNew()");
-
         if (is_string($notice)) {
             if (isset($filename)) {
                 $this->deleteFile($filename);
@@ -252,8 +248,6 @@ class NewnoticeAction extends Action
             $this->clientError($notice);
         }
 
-        common_debug("newnotice.php - after Notice::saveNew()");
-
         if (isset($mimetype)) {
             $this->attachFile($notice, $filename, $mimetype, $short_fileurl);
         }
@@ -291,20 +285,12 @@ class NewnoticeAction extends Action
             $this->serverError(_('Somehow lost the login in saveFile'));
         }
 
-        common_debug("NewnoticeAction::storeFile()");
-
         $basename = basename($_FILES['attach']['name']);
 
-        common_debug("Basename: $basename");
-
         $filename = File::filename($cur->getProfile(), $basename, $mimetype);
 
-        common_debug("filename: $filename");
-
         $filepath = File::path($filename);
 
-        common_debug("filepath: $filepath");
-
         if (move_uploaded_file($_FILES['attach']['tmp_name'], $filepath)) {
             return $filename;
         } else {
@@ -325,8 +311,6 @@ class NewnoticeAction extends Action
 
         $file->url = common_local_url('file', array('notice' => $notice->id));
 
-        common_debug("file->url =". $file->url);
-
         $filepath = File::path($filename);
 
         $file->size = filesize($filepath);