diff options
author | Pascal Chevrel <pascal@chevrel.org> | 2012-05-03 08:49:59 +0200 |
---|---|---|
committer | Pascal Chevrel <pascal@chevrel.org> | 2012-05-03 08:49:59 +0200 |
commit | f85c96ebbf2784182454c97ab1974823a279b68a (patch) | |
tree | 88d47ff955ee300d18110d1bbb47403d989f2a01 /admin | |
parent | b757fea1b740740fc63d0f1409b2f334b00fe6e8 (diff) | |
download | planet-f85c96ebbf2784182454c97ab1974823a279b68a.tar planet-f85c96ebbf2784182454c97ab1974823a279b68a.tar.gz planet-f85c96ebbf2784182454c97ab1974823a279b68a.tar.bz2 planet-f85c96ebbf2784182454c97ab1974823a279b68a.tar.xz planet-f85c96ebbf2784182454c97ab1974823a279b68a.zip |
display moonmoon version in title bar of the administration panel, make the version number a variable
Diffstat (limited to 'admin')
-rwxr-xr-x | admin/template.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/admin/template.php b/admin/template.php index d5641f9..7818bef 100755 --- a/admin/template.php +++ b/admin/template.php @@ -3,7 +3,13 @@ <html lang="en"> <head> <meta charset="utf-8"> - <title><?=_g('moonmoon administration')?></title> + <title> + +<?php + echo _g('Administration') . ' — '; + printf(_g('moonmoon %s', '%s is the version number for moonmoon, this string appears as the tab title in the admin panel'), $moon_version); +?> + </title> <link rel="stylesheet" media="screen" type="text/css" href="default.css"> <!--[if lte IE 9]> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> |