diff --git a/web/html/index.php b/web/html/index.php
index 617b16a..7e04d59 100644
--- a/web/html/index.php
+++ b/web/html/index.php
@@ -52,7 +52,7 @@ while ($row = mysql_fetch_assoc($result)) {
 	print '<tr>';
         print '<td class="boxSoft">';
 
-        print '<span class="f4"><span class="blue"><a href="/packages.php?do_Details=1&ID='.intval($row["ID"]).'">';
+        print '<span class="f4"><span class="blue"><a href="/packages.php?ID='.intval($row["ID"]).'">';
 	print $row["Name"]." ".$row["Version"]."</a></span></span>";
 
         print '</td>';
diff --git a/web/html/packages.php b/web/html/packages.php
index 1600e41..143fbdf 100644
--- a/web/html/packages.php
+++ b/web/html/packages.php
@@ -16,7 +16,7 @@ if (isset($_GET['ID'])) {
 	if (!empty($id)) {
 		$title = $id;
 	}
-}	else if (isset($_GET['K'])) {
+}	else if (!empty($_GET['K'])) {
 	$title = "Search: " . $_GET['K'];
 } else if (isset($_GET['do_MyPackages'])) {
 	$title = __("My Packages");
diff --git a/web/lang/en/aur_po.inc b/web/lang/en/aur_po.inc
index 1542817..feab23a 100644
--- a/web/lang/en/aur_po.inc
+++ b/web/lang/en/aur_po.inc
@@ -27,4 +27,6 @@ $_t["en"]["Discussion"] = "Discussion";
 
 $_t["en"]["Bugs"] = "Bugs";
 
-?>
\ No newline at end of file
+$_t["en"]["Trusted User"] = "TU";
+
+?>
diff --git a/web/lib/aur.inc b/web/lib/aur.inc
index a9095cd..cfe4a96 100644
--- a/web/lib/aur.inc
+++ b/web/lib/aur.inc
@@ -447,29 +447,6 @@ function can_submit_pkg($name="", $sid="") {
 	return 0;
 }
 
-# convert an ini_get number to a real integer - stupid PHP!
-#
-function initeger($inival="0", $isbytes=1) {
-	$last_char = strtolower(substr($inival, -1));
-	if ($isbytes) {
-		switch ($last_char) {
-			case 't': $multiplier = 1024 * 1024 * 1024; break;
-			case 'm': $multiplier = 1024 * 1024; break;
-			case 'k': $multiplier = 1024; break;
-			default:  $multiplier = 1; break;
-		}
-	} else {
-		switch ($last_char) {
-			case 't': $multiplier = 1000 * 1000 * 1000; break;
-			case 'm': $multiplier = 1000 * 1000; break;
-			case 'k': $multiplier = 1000; break;
-			default:  $multiplier = 1; break;
-		}
-	}
-
-	return intval($inival) * $multiplier;
-}
-
 # recursive delete directory
 #
 function rm_rf($dirname="") {
diff --git a/web/lib/pkgfuncs.inc b/web/lib/pkgfuncs.inc
index d4f3ae7..a6086f8 100644
--- a/web/lib/pkgfuncs.inc
+++ b/web/lib/pkgfuncs.inc
@@ -290,10 +290,10 @@ function package_details($id=0, $SID="") {
 		} else {
 
 			# print out package details
-            #
-            echo "<div class=\"pgbox\">\n";
-            echo "  <div class=\"pgboxtitle\"><span class=\"f3\">".__("Package Details")."</span></div>\n";
-            echo "  <div class=\"pgboxbody\">\n";
+			#
+      echo "<div class=\"pgbox\">\n";
+      echo "  <div class=\"pgboxtitle\"><span class=\"f3\">".__("Package Details")."</span></div>\n";
+      echo "  <div class=\"pgboxbody\">\n";
 			echo "    <table>\n";
 			echo "      <tr><td class='boxSoft' colspan='2'><span class='f2'>";
 			echo $row["Name"] . " " . $row["Version"]."</span></td></tr>\n";
diff --git a/web/template/header.php b/web/template/header.php
index b27015a..d50aa46 100644
--- a/web/template/header.php
+++ b/web/template/header.php
@@ -37,10 +37,17 @@
       <ul>
 <?php
 if (isset($_COOKIE["AURSID"])) {
-      echo '        <li><a href="/logout.php">'.__("Logout")."</a></li>\n";
-      echo '        <li><a href="/pkgsubmit.php">'.__("Submit")."</a></li>\n";
-      echo '        <li><a href="/packages.php?do_MyPackages=1">'
-	      .__("My Packages")."</a></li>\n";
+?>
+	<li><a href="/logout.php"><?php print __("Logout"); ?></a></li>
+	<li><a href="/pkgsubmit.php"><?php print __("Submit"); ?></a></li>
+	<li><a href="/packages.php?do_MyPackages=1"><?php print __("My Packages"); ?></a></li>
+<?php
+	if (account_from_sid($_COOKIE["AURSID"]) == "Trusted User"
+		|| account_from_sid($_COOKIE["AURSID"]) == "Developer") {
+?>
+	<li><a href="/tu.php"><?php print __("Trusted User"); ?></a></li>
+<?php
+	}
 }
 ?>
    <li><a href="http://archlinux.org/mailman/listinfo/aur-general">
@@ -65,8 +72,8 @@ foreach ($SUPPORTED_LANGS as $lang => $lang_name) {
            <li>Lang: </li>
          </ul>
       </div>
-      <br />
-      <div style="text-align: right; padding-right: 10px">
+			<br />
+      <div style="text-align: right; padding-right: 10px; clear: right">
 <?php
 if (isset($_COOKIE["AURSID"])) {
   print __("Logged-in as: %h%s%h",
