diff --git a/web/html/addvote.php b/web/html/addvote.php index fe0047fa..cc463b28 100644 --- a/web/html/addvote.php +++ b/web/html/addvote.php @@ -5,7 +5,10 @@ set_include_path(get_include_path() . PATH_SEPARATOR . '../lib'); include_once("aur.inc.php"); set_lang(); check_sid(); -html_header(); + +$title = __("Add Proposal"); + +html_header($title); if (isset($_COOKIE["AURSID"])) { $atype = account_from_sid($_COOKIE["AURSID"]); @@ -81,28 +84,27 @@ if ($atype == "Trusted User" || $atype == "Developer") {
-