Changeset 817 for trunk/includes/system.php
- Timestamp:
- Feb 23, 2015, 12:03:22 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/system.php
r816 r817 336 336 { 337 337 $Output = '<strong>'.T('Search').':</strong>'. 338 339 340 341 342 343 344 345 346 347 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>'; 348 348 return($Output); 349 349 } … … 352 352 { 353 353 $Output = '<strong>'.T('Menu').':</strong>'. 354 354 '<div class="verticalmenu"><ul>'; 355 355 foreach($this->System->Menu as $MenuItem) 356 356 if($this->System->User->Licence($MenuItem['Permission'])) … … 454 454 $Output = $this->ShowHeader().$Content.$this->ShowFooter(); 455 455 if($this->System->Config['Web']['FormatOutput']) 456 456 $Output = $this->FormatOutput($Output); 457 457 return($Output); 458 458 }
Note:
See TracChangeset
for help on using the changeset viewer.