From f5ad2d87309c8a96c2f59ddc57b4b34a2f68bdb9 Mon Sep 17 00:00:00 2001 From: Mehmood Asghar Date: Fri, 23 Feb 2024 12:02:30 -0500 Subject: [PATCH] minor --- application/controllers/admin/Users.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/admin/Users.php b/application/controllers/admin/Users.php index 0cedab29..2211bc6c 100644 --- a/application/controllers/admin/Users.php +++ b/application/controllers/admin/Users.php @@ -124,7 +124,7 @@ function add() $this->acl_manager->has_access_or_die('user', 'create'); $this->data['page_title'] = t("create_user_account"); - $use_complex_password=$this->ci->config->item("require_complex_password"); + $use_complex_password=$this->config->item("require_complex_password"); //validate form input $this->form_validation->set_rules('username', t('username'), 'xss_clean|max_length[20]|required|callback_username_exists');