Changeset 9788

Show
Ignore:
Timestamp:
05/30/10 12:45:15 (2 years ago)
Author:
p_lindheimer
Message:

add title to categories saying they can click to expand/collapse the section

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/branches/2.8/amp_conf/htdocs/admin/views/freepbx_admin.php

    r9782 r9788  
    8080    if ($fpbx_usecategories && ($row['category'] != $prev_category)) { 
    8181      $cat_id = $row['type'].'-'.md5($row['category']); 
    82       echo "\t\t<li id='$cat_id' class=\"category category-header\">".htmlspecialchars(_($row['category']), ENT_QUOTES)."</li>\n"; 
     82      echo "\t\t<li title='"._("click to expand/collapse section")."' id='$cat_id' class=\"category category-header\">".htmlspecialchars(_($row['category']), ENT_QUOTES)."</li>\n"; 
    8383      $prev_category = $row['category']; 
    8484      $prev_tab = $row['type'];