From c1353b6384ea44258c14f79cdaa8ea6e38a8ae51 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sat, 23 Mar 2013 09:45:21 +0400 Subject: Revert "remove default definition of SITE_TITLE; rename to _SITE_TITLE as with other constants of this nature" This reverts commit 1f56ba13cd69efca4f24a3bce9a8bb8ebcf3ebac. --- include/functions.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'include') diff --git a/include/functions.php b/include/functions.php index 994b4c179..00dc6a8fe 100644 --- a/include/functions.php +++ b/include/functions.php @@ -4086,10 +4086,10 @@ } function get_site_title() { - if (defined("_SITE_TITLE")) { - return _SITE_TITLE; - } else { - return "Tiny Tiny RSS"; - } + $original_title = "Tiny Tiny RSS"; + if (defined("SITE_TITLE")) { + return SITE_TITLE; + } + return $original_title; } ?> -- cgit v1.2.3-54-g00ecf