Browse Source

adjustments of typos

develop
tswagger 10 years ago
parent
commit
ec82d3ef06
  1. 9
      application/config/aauth.php
  2. 8
      application/libraries/Aauth.php

9
application/config/aauth.php

@ -1,7 +1,4 @@
<?php <?php if (!defined('BASEPATH')) exit('No direct script access allowed');
if (!defined('BASEPATH'))
exit('No direct script access allowed');
/* /*
| ------------------------------------------------------------------- | -------------------------------------------------------------------
| Aauth Config | Aauth Config
@ -74,5 +71,5 @@ $config['aauth'] = array(
); );
/* End of file autoload.php */ /* End of file aauth.php */
/* Location: ./application/config/autoload.php */ /* Location: ./application/config/aauth.php */

8
application/libraries/Aauth.php

@ -20,6 +20,8 @@
* The latest version of Aauth can be obtained from: * The latest version of Aauth can be obtained from:
* https://github.com/emreakay/CodeIgniter-Aauth * https://github.com/emreakay/CodeIgniter-Aauth
* *
* @todo separate (on some level) the unvalidated users from the "banned" users
* @todo remove requirement for unique name/username (or default it to use email address, perhaps via config file)
*/ */
class Aauth { class Aauth {
@ -1790,7 +1792,7 @@ class Aauth {
* *
* Removes info messages from info list and clears all associated flashdata * Removes info messages from info list and clears all associated flashdata
*/ */
public function clear_errors() { public function clear_info() {
$this->infos = []; $this->infos = [];
$this->CI->session->set_flashdata('infos', $this->infos); $this->CI->session->set_flashdata('infos', $this->infos);
} }
@ -2144,5 +2146,5 @@ return false;
/* End of file Aauth.php */
/* Location: ./application/libraries/Aauth.php */
Loading…
Cancel
Save