]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Removed dead code.
authorRobin Millette <millette@controlyourself.ca>
Mon, 18 May 2009 23:23:18 +0000 (19:23 -0400)
committerRobin Millette <millette@controlyourself.ca>
Mon, 18 May 2009 23:23:18 +0000 (19:23 -0400)
classes/File_redirection.php
lib/noticelist.php
lib/util.php

index a71d1c0831dc984053b1b85c25f5b822fd6c9a8b..0eae68178373757bf3bf5f042850610d4a341d9a 100644 (file)
@@ -201,7 +201,6 @@ class File_redirection extends Memcached_DataObject
 
         if ($short_url) {
             $short_url = (string)$short_url;
-if(1) {
             // store it
             $file = File::staticGet('url', $long_url);
             if (empty($file)) {
@@ -221,7 +220,6 @@ if(1) {
                 $file_redir->file_id = $file_id;
                 $file_redir->insert();
             }
-}
             return $short_url;
         }
         return $long_url;
index 55dd902b4a3def0933b3c7a2fed3d431dd4d661c..004905056276acf142a87db0627e94fa35e221d5 100644 (file)
@@ -187,7 +187,7 @@ class NoticeListItem extends Widget
 
     function showNotice()
     {
-if (0)
+if(0)
         $this->out->elementStart('entry-title');
 else
 
@@ -236,7 +236,7 @@ else
             $clip .= '.png';
             $top = '20px';
         }
-if (0)
+if(0)
         $this->out->elementStart('div', 'entry-attachments');
 else
         $this->out->elementStart('p', array('class' => 'entry-attachments', 'style' => "float: right; width: $width_att; background: url($clip) no-repeat; text-align: right; height: $height;"));
index 25c0fb0a15915467e2a6a64f3a316122c7472cee..fbef8764a783fa60b2df42f76f72fb7a537bc40d 100644 (file)
@@ -496,11 +496,6 @@ function common_linkify($url) {
     }
 
     $attrs = array('href' => $longurl, 'rel' => 'external');
-if(0){
-    if ($longurl !== $url) {
-        $attrs['title'] = $longurl;
-    }
-}
     return XMLStringer::estring('a', $attrs, $display);
 }