Jeff Zaroyko : remove redundant "Viewing App:" from title to make shorter
Module: appdb Branch: master Commit: bc07ac0e126fb08e90337b8e2cd6a4928720fc23 URL: http://source.winehq.org/git/appdb.git/?a=commit;h=bc07ac0e126fb08e90337b8e2... Author: Jeff Zaroyko <jeffzaroyko(a)gmail.com> Date: Tue Feb 26 13:17:35 2008 +1100 remove redundant "Viewing App:" from title to make shorter for bookmarks and browser history --- include/application.php | 2 +- include/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/application.php b/include/application.php index 3dd8c77..71c9ff9 100644 --- a/include/application.php +++ b/include/application.php @@ -719,7 +719,7 @@ class Application { switch($sAction) { case "view": - return "Viewing App: ".$this->sName; + return $this->sName; default: return null; diff --git a/include/version.php b/include/version.php index d4ff420..e8dcc34 100644 --- a/include/version.php +++ b/include/version.php @@ -746,7 +746,7 @@ class version { switch($sAction) { case "view": - return "Viewing App: ".version::fullName($this->iVersionId); + return version::fullName($this->iVersionId); default: return null;
participants (1)
-
Chris Morgan