diff options
| author | David Aspinall | 1999-10-15 18:16:06 +0000 |
|---|---|---|
| committer | David Aspinall | 1999-10-15 18:16:06 +0000 |
| commit | 11b26704cbb61fd92f6dd242e7fd3c65f6fc8d8b (patch) | |
| tree | adfec5c1bdc4de42aa6413965022cef0e8be361a | |
| parent | 88f227e34d6dc778f99e585587811b6a6bd33f3a (diff) | |
Fixed bug
| -rw-r--r-- | html/functions.php3 | 3 | ||||
| -rw-r--r-- | html/head.phtml | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/html/functions.php3 b/html/functions.php3 index 65e9b155..efa23165 100644 --- a/html/functions.php3 +++ b/html/functions.php3 @@ -16,8 +16,9 @@ $project_email = "proofgen@dcs.ed.ac.uk"; $project_list = "proofgeneral@dcs.ed.ac.uk"; -$project_title = "Proof General" +$project_title = "Proof General"; $project_subtitle = "Organize your Proofs!"; +$project_full_title = $project_title . " --- " . $project_subtitle; // DTD diff --git a/html/head.phtml b/html/head.phtml index 6318e2c3..7a008dbf 100644 --- a/html/head.phtml +++ b/html/head.phtml @@ -1,5 +1,5 @@ <head> - <title><?php print $pg_title; ?></title> + <title><?php print $project_full_title ?></title> <meta name="author" content="David Aspinall <da@dcs.ed.ac.uk>"> <meta name="keywords" content="Isabelle, LEGO, Coq, Emacs, XEmacs, Interface, Theorem Prover, GUI, David Aspinall"> |
