Ignore:
Timestamp:
Feb 23, 2015, 12:03:22 AM (9 years ago)
Author:
chronos
Message:
  • Fixed: Regeneration of team level images from admin page.
  • Added: Show link to client version from import table and translation list table.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/system.php

    r816 r817  
    336336  {
    337337    $Output = '<strong>'.T('Search').':</strong>'.
    338         '<form action="'.$this->System->Link('/search/').'" method="get"><div>'.
    339         '<table>'.
    340         '<tr>'.
    341         '<td><input type="text" name="text" size="13" /></td>'.
    342         '</tr>'.
    343         '<tr>'.
    344         '<th><input type="submit" value="'.T('Do search').'" /></th>'.
    345         '</tr>'.
    346         '</table></div>'.
    347         '</form>';
     338      '<form action="'.$this->System->Link('/search/').'" method="get"><div>'.
     339      '<table>'.
     340      '<tr>'.
     341      '<td><input type="text" name="text" size="13" /></td>'.
     342      '</tr>'.
     343      '<tr>'.
     344      '<th><input type="submit" value="'.T('Do search').'" /></th>'.
     345      '</tr>'.
     346      '</table></div>'.
     347      '</form>';
    348348    return($Output);
    349349  }
     
    352352  {
    353353    $Output = '<strong>'.T('Menu').':</strong>'.
    354         '<div class="verticalmenu"><ul>';
     354      '<div class="verticalmenu"><ul>';
    355355    foreach($this->System->Menu as $MenuItem)
    356356      if($this->System->User->Licence($MenuItem['Permission']))
     
    454454    $Output = $this->ShowHeader().$Content.$this->ShowFooter();
    455455    if($this->System->Config['Web']['FormatOutput'])
    456           $Output = $this->FormatOutput($Output);
     456      $Output = $this->FormatOutput($Output);
    457457    return($Output);
    458458  }
Note: See TracChangeset for help on using the changeset viewer.