add TOS to footer menu if brought-by available

This commit is contained in:
Evan Prodromou 2009-06-20 22:36:56 -07:00
parent 2f991f9396
commit de0335fbe9

View File

@ -247,7 +247,6 @@ class Action extends HTMLOutputter // lawsuit
'src' => common_path('js/jquery.joverlay.min.js')), 'src' => common_path('js/jquery.joverlay.min.js')),
' '); ' ');
Event::handle('EndShowJQueryScripts', array($this)); Event::handle('EndShowJQueryScripts', array($this));
} }
if (Event::handle('StartShowLaconicaScripts', array($this))) { if (Event::handle('StartShowLaconicaScripts', array($this))) {
@ -704,6 +703,11 @@ class Action extends HTMLOutputter // lawsuit
_('About')); _('About'));
$this->menuItem(common_local_url('doc', array('title' => 'faq')), $this->menuItem(common_local_url('doc', array('title' => 'faq')),
_('FAQ')); _('FAQ'));
$bb = common_config('site', 'broughtby');
if (!empty($bb)) {
$this->menuItem(common_local_url('doc', array('title' => 'tos')),
_('TOS'));
}
$this->menuItem(common_local_url('doc', array('title' => 'privacy')), $this->menuItem(common_local_url('doc', array('title' => 'privacy')),
_('Privacy')); _('Privacy'));
$this->menuItem(common_local_url('doc', array('title' => 'source')), $this->menuItem(common_local_url('doc', array('title' => 'source')),