-
Notifications
You must be signed in to change notification settings - Fork 235
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
email_config error #158
Comments
also on line 478 |
Hi Tim, The error comes because the I'm doesn't know the trick with |
REJack
added a commit
that referenced
this issue
Jul 16, 2016
Fix is released 😄, now the |
I'll close this issue, if the problem is still there reopen the issue 😃. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Getting a error when using an email config file. When config file is named email.php it does NOT need to be initialized in CI3.
Severity: Notice
Message: Undefined index: email_config
Filename: libraries/Aauth.php
Line Number: 912
Suggested fix:
change line 912 from
if(is_array($this->config_vars['email_config'])){
to
if(isset($this->config_vars['email_config']) && is_array($this->config_vars['email_config'])){
I am not sure if there are other ramifications to this suggested fix, but it eliminated the error I was getting.
The text was updated successfully, but these errors were encountered: