Files
Mozilla/mozilla/webtools/addons/public/htdocs/search-engines.php
mike.morgan%oregonstate.edu 64be11b7e4 Fixed up, commented, and implemented multiple caching.
Added global variables:
    cacheId
    compileId
    currentTab
    clean
    sql

Moved trusted var arrays into init -- since they are always there, and if they are not used it'll just be a null array.


git-svn-id: svn://10.0.0.236/trunk@186693 18797224-902f-48f8-a5cc-f745e15eee43
2005-12-29 02:22:18 +00:00

24 lines
552 B
PHP

<?php
/**
* Overview provides an inside look at what is going on for an application.
*
* @package amo
* @subpackage docs
*
* @todo Do something to spice up this page.
* @todo Get main template spruced up.
*/
$currentTab = 'search-engines';
startProcessing('search-engines.tpl',null,$compileId,'nonav');
require_once('includes.php');
// Assign template variables.
$tpl->assign(
array( 'title' => 'Search Engines',
'currentTab' => $currentTab,
'content' => 'search-engines.tpl')
);
?>