[thirdparty-commits] jpeeler: mantis/trunk r46 - /mantis/trunk/license_pending.php

SVN commits to the Digium third-party software repository thirdparty-commits at lists.digium.com
Thu Jan 8 10:17:57 CST 2009


Author: jpeeler
Date: Thu Jan  8 10:17:54 2009
New Revision: 46

URL: http://svn.digium.com/view/thirdparty?view=rev&rev=46
Log:
allow viewing of the DOB and nationality during approval

Modified:
    mantis/trunk/license_pending.php

Modified: mantis/trunk/license_pending.php
URL: http://svn.digium.com/view/thirdparty/mantis/trunk/license_pending.php?view=diff&rev=46&r1=45&r2=46
==============================================================================
--- mantis/trunk/license_pending.php (original)
+++ mantis/trunk/license_pending.php Thu Jan  8 10:17:54 2009
@@ -87,8 +87,8 @@
 	$c_query = db_query("SELECT * FROM mantis_license_table WHERE pending = TRUE AND date_expired IS NULL");
 
 	if (db_num_rows($c_query)) {
-		$columns = array("ID", "Username", "Real name", "Company", "Job title",
-					  "City", "Country", "E-mail", "Date signed", "Version");
+		$columns = array("ID", "Username", "Real name", "DOB", "Company", "Job title",
+					  "City", "Country", "Nationality", "E-mail", "Date signed", "Version");
 
 		if ($t_manage)
 			$columns = array_merge($columns, array("Accept", "Reject"));
@@ -109,7 +109,7 @@
 			$c_result["user_id"] = user_get_name($c_result["user_id"]);
 
 
-			foreach(array("id", "user_id", "name", "company", "job_title", "address_city", "address_country", "email", "date_signed", "license_ver") as $k) {
+			foreach(array("id", "user_id", "name", "dob", "company", "job_title", "address_city", "address_country", "nationality_country", "email", "date_signed", "license_ver") as $k) {
 				echo "  <td>{$c_result[$k]}</td>\n";
 			}
 




More information about the thirdparty-commits mailing list