diff --git a/config.php-dist b/config.php-dist index a5a7fc3e..176949fd 100644 --- a/config.php-dist +++ b/config.php-dist @@ -183,6 +183,9 @@ // Users may enable other user plugins from Preferences/Plugins but may not // disable plugins specified in this list. + define('SITE_TITLE', 'Tiny Tiny RSS'); + // Change this value to customize the HTML page title + define('CONFIG_VERSION', 26); // Expected config version. Please update this option in config.php // if necessary (after migrating all new options from this file). diff --git a/include/functions.php b/include/functions.php index 17fe1854..0e2a922b 100644 --- a/include/functions.php +++ b/include/functions.php @@ -4098,4 +4098,11 @@ return $max_ts; } + function get_site_title() { + $original_title = "Tiny Tiny RSS"; + if (defined("SITE_TITLE")) { + return SITE_TITLE; + } + return $original_title; + } ?> diff --git a/index.php b/index.php index bf8eafe7..4669a208 100644 --- a/index.php +++ b/index.php @@ -53,7 +53,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - Tiny Tiny RSS + <?php echo get_site_title() ?> diff --git a/js/tt-rss.js b/js/tt-rss.js index eaa1f3da..91aff8b6 100644 --- a/js/tt-rss.js +++ b/js/tt-rss.js @@ -178,7 +178,11 @@ function search() { } function updateTitle() { - var tmp = "Tiny Tiny RSS"; + var tmp = document.title; + if (tmp.indexOf(")") > 0) + { + tmp = tmp.substr(tmp.indexOf(")") + 1); + } if (global_unread > 0) { tmp = "(" + global_unread + ") " + tmp; diff --git a/prefs.php b/prefs.php index 0715f26e..0d27a6e8 100644 --- a/prefs.php +++ b/prefs.php @@ -23,7 +23,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - Tiny Tiny RSS : <?php echo __("Preferences") ?> + <?php echo get_site_title() ?> : <?php echo __("Preferences") ?> diff --git a/register.php b/register.php index 0dc91e96..0d714c22 100644 --- a/register.php +++ b/register.php @@ -27,7 +27,7 @@ print ''; print " ".htmlspecialchars(SELF_URL_PATH . "/register.php")." - Tiny Tiny RSS registration slots + <?php echo get_site_title() ?> registration slots ";