Changeset 895

Show
Ignore:
Timestamp:
01/30/07 16:24:04 (2 years ago)
Author:
ben
Message:

Search queries now show up in the title of search pages.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • devel/search/all.php

    r659 r895  
    1111define("context","search"); 
    1212 
    13 $title = __gettext("Searching Everything"); 
    1413$tag = optional_param('tag'); 
     14$title = __gettext("Searching") . " : " . $tag; 
    1515 
    1616templates_page_setup(); 
  • devel/search/index.php

    r659 r895  
    1313        define("context","search"); 
    1414                 
    15         $title = __gettext("Search"); 
     15        $tag = optional_param('tag'); 
     16        $title = __gettext("Searching") . " : " . $tag; 
    1617        templates_page_setup(); 
    1718