diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-07-07 11:34:49 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-07-07 11:34:49 -0400 |
commit | dd705ddaf751ee8132cdd52e47aeef259477912c (patch) | |
tree | 7c1d1c76ac9814716f3b0c0f5472bfefd459ed6d /lib/action.php | |
parent | 247cf2ea8f2f779b60c445d45e6728e8db67738d (diff) | |
parent | de0335fbe946d94a47247d8118b1f57f0f4843aa (diff) |
Merge branch 'tos' into 0.8.x
Diffstat (limited to 'lib/action.php')
-rw-r--r-- | lib/action.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/action.php b/lib/action.php index c89fe180a..928eb48c0 100644 --- a/lib/action.php +++ b/lib/action.php @@ -708,6 +708,11 @@ class Action extends HTMLOutputter // lawsuit _('About')); $this->menuItem(common_local_url('doc', array('title' => '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')), _('Privacy')); $this->menuItem(common_local_url('doc', array('title' => 'source')), |