admin: Show all profiles in select box instead of just unreserved ones.
[org.fsf.memberdashboard.git] / CRM / Admin / Form / Setting / MemberDashboard.php
index fb6584ce677a2390757d4917b32a39b660753afb..5b0bda48e3cd71226307f0d8be02f5b85b93fcda 100644 (file)
@@ -31,7 +31,7 @@ class CRM_Admin_Form_Setting_MemberDashboard extends CRM_Admin_Form_Setting {
    * Fetch the names and ids of all unreserved profiles.
    */
   function fetchProfiles() {
-    $sql = 'SELECT id, title FROM civicrm_uf_group WHERE is_reserved=0';
+    $sql = 'SELECT id, title FROM civicrm_uf_group';
     $dao = CRM_Core_DAO::executeQuery($sql);
     $profiles = array();