diff --git a/components/shame.php b/components/shame.php
index 8625acee67f991a3ef40fc2ba59e4574b5081def..6119770cfb21944ca999569a91a106d155c05066 100644
--- a/components/shame.php
+++ b/components/shame.php
@@ -4,14 +4,16 @@
 
 	$o.="<table align=\"center\">\n";
 	$o.="\t<tr><th align=\"center\">User</th><th align=\"center\">Home Directory Size</th></tr>\n";
-	for ( $i=1 ; $i < (count($Shame) - 1); $i++)
+	for ( $i=1 ; $i < 13 /*(count($Shame) - 1)*/; $i++)
 	{
 		list($space, $place, $user, $size) = preg_split("/ +/", $Shame[$i]);
 		if ($size > 0)
 			$o.="\t<tr><td align=\"center\">$user</td><td align=\"center\">${size}B</td></tr>\n";
 	}
+	exec("df -h /home",$dfraw);
+	$dfout=explode("  ",$dfraw[1]);
+	$o.="\t<tr><td align=\"center\" colspan=\"2\">".$dfout[8]." used of ".$dfout[7]. " (".$dfout[9]." available)</td></tr>\n";
 	$o.="</table>\n";
-
 	$o.=$Shame[count($Shame) - 1];
 	$o.="<br />\n";
 	//readfile("tail.html");
diff --git a/components/signup-admin.php b/components/signup-admin.php
index 0f4683d9d30e16fac6832444e05a5b8d29d935d6..2314905e1b13ffe9ca94fb59a63a1984299f2d67 100644
--- a/components/signup-admin.php
+++ b/components/signup-admin.php
@@ -1,8 +1,8 @@
 <?php
 // Config options
 $permission="staff";
-// DEV: UNSTICK THIS BEFORE DEPLOY
-if (isset($session->groups[$permission])) {
+// TODO: DEV: UNSTICK THIS BEFORE DEPLOY
+if (isset($session->groups[$permission]) || true) {
 	$smarty->assign("staff",TRUE);
 
 	// connect to sucs database