cleanup sort_sites() calls after plc_sorts.php removal.
[plewww.git] / planetlab / persons / register.php
index 4ff23b9..dbdf7b4 100644 (file)
@@ -31,9 +31,6 @@
 require_once 'plc_session.php';
 global $plc, $api, $adm;
 
-// Get sorting functions
-require_once 'plc_sorts.php';
-
 // Print header
 require_once 'plc_drupal.php';
 drupal_set_title('Account Registration');
@@ -197,9 +194,6 @@ $adm->GetRoles();
 
 list($sites, $roles) = $adm->commit();
 
-// Alphabetize sites by name
-sort_sites($sites);
-
 // Prepend invalid site to beginning of list to force user to select a site
 $sites = array_merge(array(array('site_id' => -1, 'name' => 'Select a site', 'enabled' => TRUE)), $sites);