diff --git a/html/profiles/custom_profile/libraries/profiler/profiler_install.inc b/html/profiles/custom_profile/libraries/profiler/profiler_install.inc
index 59de6a2..9a49615 100644
--- a/html/profiles/custom_profile/libraries/profiler/profiler_install.inc
+++ b/html/profiles/custom_profile/libraries/profiler/profiler_install.inc
@@ -42,7 +42,12 @@ function profiler_install_users($users) {
         $pass = $array['pass'];
 
         unset($array['roles'], $array['pass']);
-        user_save(new stdClass(), $array);
+        
+        // create temp account object to avoid NOTICE ERRORS
+        $account = new StdClass();
+        $account->uid = NULL;
+
+        user_save($account, $array);
 
         $account = user_load(array('name' => $array['name']));
         _profiler_install_users_roles($account, $roles);
