From e12a8ad3da6fdec073e099438a69f745f5b9faf5 Mon Sep 17 00:00:00 2001 From: Callan Barrett Date: Sat, 20 Dec 2008 19:37:19 +0900 Subject: Remove success messages after package functions Just displays message at the top of the page of what happened (errors or not) and goes back to the same page Signed-off-by: Callan Barrett Signed-off-by: Loui Chang --- web/lib/pkgfuncs.inc | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'web/lib/pkgfuncs.inc') diff --git a/web/lib/pkgfuncs.inc b/web/lib/pkgfuncs.inc index 2b3cece2..f99810a7 100644 --- a/web/lib/pkgfuncs.inc +++ b/web/lib/pkgfuncs.inc @@ -290,9 +290,9 @@ function package_details($id=0, $SID="") { # print out package details # - echo "
\n"; - echo "
".__("Package Details")."
\n"; - echo "
\n"; + echo "
\n"; + echo "
".__("Package Details")."
\n"; + echo "
\n"; echo " \n"; echo " \n"; @@ -364,8 +364,8 @@ function package_details($id=0, $SID="") { $deps = package_dependencies($row["ID"]); # $deps[0] = array('id','name', 'dummy'); if (count($deps) > 0) { - echo " \n"; - echo " \n"; + echo "
"; echo $row["Name"] . " " . $row["Version"]."
\n"; + echo "
\n"; echo " \n"; echo " \n"; @@ -473,7 +473,7 @@ function package_details($id=0, $SID="") { echo "
\n"; echo "
".__("Actions")."
\n"; echo "
\n"; - echo "
\n"; + echo " \n"; echo " \n"; echo " \n"; # Voting Button @@ -767,7 +767,7 @@ function pkg_search_page($SID="") { $result = db_query($q, $dbh); $total = mysql_result(db_query('SELECT FOUND_ROWS() AS Total', $dbh), 0); - print "\n"; + print "\n"; print "
\n"; print "
"; echo __("Dependencies")."
\n"; print "\n"; -- cgit v1.2.3-24-g4f1b