Code

added alt tag to
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 25 May 2005 09:21:01 +0000 (09:21 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 25 May 2005 09:21:01 +0000 (09:21 +0000)
M    plugins/addons/logview/class_logview.inc
M    plugins/admin/applications/class_applicationGeneric.inc

git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@429 594d385d-05f5-0310-b6e9-bd551577e9d8

plugins/addons/logview/class_logview.inc
plugins/admin/applications/class_applicationGeneric.inc

index 1016adf59f8f5eae1d6b8ea4bb02690980b56def..a728785bf1031084d05245b2fa3cd9f0113f2072 100644 (file)
@@ -222,7 +222,7 @@ class logview extends plugin
 
                                $res.="<tr style=\"$col\">\n";
                                $res.="<td style=\"text-align:center\">
-                                               <img src=\"".get_template_path('images/log_'.strtolower($line['log_level'])).".png\" title=\"Log level is '".$line['log_level']."'\"></td><td>".$line['host']."</td>";
+                                               <img alt=\"\" src=\"".get_template_path('images/log_'.strtolower($line['log_level'])).".png\" title=\"Log level is '".$line['log_level']."'\"></td><td>".$line['host']."</td>";
                                $res.="<td>".$line['time_stamp']."</td><td width=\"100%\">".$line['message']."</td>";
                                $res.="</tr>\n";
                        }
@@ -246,7 +246,7 @@ class logview extends plugin
        foreach( array("host", "log_level", "time", "regex") as $type){
                 $smarty->assign("$type", $logfilter[$type]);
         }
-       $smarty->assign("mode".$this->sort, "<img src=\"images/sort_".$this->sort_direction.
+       $smarty->assign("mode".$this->sort, "<img alt=\"\" src=\"images/sort_".$this->sort_direction.
                         ".png\" border=0 align=middle>");
        return ($smarty->fetch (get_template_path('contents.tpl', TRUE)));
   }
index 4073ee89205c2d3687e59e280909543e51dfe1ed..4330a54e09bacfb89459e56a5c09215a966d2a23 100644 (file)
@@ -53,7 +53,7 @@ class application extends plugin
   {
        /* Do we represent a valid group? */
        if (!$this->is_account && $this->parent == NULL){
-                $display= "<img src=\"images/stop.png\" align=\"middle\">&nbsp;<b>".
+                $display= "<img alt=\"\" src=\"images/stop.png\" align=\"middle\">&nbsp;<b>".
                         _("This 'dn' is no application.")."</b>";
                 return ($display);
        }