Code

added alt=\"\" for <img ....
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 25 May 2005 09:11:07 +0000 (09:11 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 25 May 2005 09:11:07 +0000 (09:11 +0000)
M    plugins/gofax/blocklists/main.inc
M    plugins/admin/ogroups/main.inc
M    plugins/gofon/reports/class_fonreport.inc
M    plugins/generic/references/class_reference.inc

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

plugins/admin/ogroups/main.inc
plugins/generic/references/class_reference.inc
plugins/gofax/blocklists/main.inc
plugins/gofon/reports/class_fonreport.inc

index 5b36041021ee79c4cbdb60ed3458f487ee0e4e0d..ae6fdc353ce7e5ecb158c22fdc99497630d1046a 100644 (file)
@@ -32,7 +32,7 @@ if (!$remove_lock){
   if (isset($_SESSION['objectinfo'])){
     $display= print_header(get_template_path('images/ogroup.png'),
                           _("Object groups"),
-                          "<img align=\"middle\" src=\"".
+                          "<img alt=\"\" align=\"middle\" src=\"".
                           get_template_path('images/closedlock.png').
                           "\"> ".$_SESSION['objectinfo']);
   } else {
index 643076dc34ce6e1eaef7111931c69622e6043a47..5b97749d70f6cc8d92d87cb3d088ea33708bb797 100644 (file)
@@ -119,7 +119,7 @@ class reference extends plugin
                } else {
                        $img= "images/sort_down.png";
                }
-               $this->objectlist.= '<tr style="background-color:'.$cycle[$id&1].';"><td class="phonelist" title="'.$attrs['cn'][0].'"><a href=main.php?plug='.$_GET['plug'].'&amp;start=&amp;show='.base64_encode($attrs['dn']).'><img src="'.$img.'" border=0>&nbsp;'.$attrs['cn'][0].'</a></td><td>'.$description.'</td><td>'.$content.'</td> </tr>'.$addon;
+               $this->objectlist.= '<tr style="background-color:'.$cycle[$id&1].';"><td class="phonelist" title="'.$attrs['cn'][0].'"><a href=main.php?plug='.$_GET['plug'].'&amp;start=&amp;show='.base64_encode($attrs['dn']).'><img alt=\"\" src="'.$img.'" border=0>&nbsp;'.$attrs['cn'][0].'</a></td><td>'.$description.'</td><td>'.$content.'</td> </tr>'.$addon;
 
                $id++;
        }
@@ -153,7 +153,7 @@ class reference extends plugin
        $result= "";
        foreach ($classes as $class){
                if (isset($this->obtypes[$class])){
-                       $result.= "<a><img border=0 src='images/".$this->obtypes[$class]['image']."'>&nbsp;".$this->obtypes[$class]['text']."</a> ";
+                       $result.= "<a><img alt=\"\" border=0 src='images/".$this->obtypes[$class]['image']."'>&nbsp;".$this->obtypes[$class]['text']."</a> ";
                }
        }       
        return (preg_replace('/ $/', '', $result));
index baa2dffd6fb69e5283cda8b2f97866d577737fbd..6bedd267aad468661362ddd21efe17336f81223a 100644 (file)
@@ -17,7 +17,7 @@ if ($remove_lock){
 
        /* Page header*/
        if (isset($_SESSION['objectinfo'])){
-               $display= print_header(get_template_path('images/blocklists.png'), _("Blocklist management"), "<img align=\"middle\" src=\"".get_template_path('images/closedlock.png')."\"> ".$_SESSION['objectinfo']);
+               $display= print_header(get_template_path('images/blocklists.png'), _("Blocklist management"), "<img alt=\"\"align=\"middle\" src=\"".get_template_path('images/closedlock.png')."\"> ".$_SESSION['objectinfo']);
        } else {
                $display= print_header(get_template_path('images/blocklists.png'), _("Blocklist management"));
        }
index ee630aed18257acd9f1c187672357c86b4f7859b..293c11ddbd3dc7805a5bd4e783023938fb6ac5be 100644 (file)
@@ -230,7 +230,7 @@ class fonreport extends plugin
         for($i= 0; $i<7; $i++){
                 $smarty->assign("mode$i", "");
         }
-       $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=center>");
        return($smarty->fetch(get_template_path('contents.tpl', TRUE)));
   }