Page 1 of 1

Password Recovering

PostPosted: 02 Sep 2015, 12:35
by Ashwini
password recovering functionality , not work properly.
In admin section , users menu-
when i go to the , 2 page of the user list page with the help of paging button and click on password recovering , pop mail id is wrong , which is by default display first page user mail-id and not send recovering password mail.

Re: Password Recovering

PostPosted: 03 Sep 2015, 11:21
by andipas
The file - protected/modules/users/views/backend/admin.php

after
Code: Select all

$this
->widget('CustomGridView', array(
    'id'=>'user-grid',
    'dataProvider'=>$model->search(),
    'filter'=>$model,
    'afterAjaxUpdate' => 'function(){$("a[rel=\'tooltip\']").tooltip(); $("div.tooltip-arrow").remove(); $("div.tooltip-inner").remove(); jQuery("#News_date_created").datepicker(jQuery.extend(jQuery.datepicker.regional["'.Yii::app()->controller->datePickerLang.'"],{"showAnim":"fold","dateFormat":"yy-mm-dd","changeMonth":"true","showButtonPanel":"true","changeYear":"true"}));}',
    'columns'=>$columns,
 


add
Code: Select all

    
'ajaxUpdate' => false,
 

Re: Password Recovering

PostPosted: 03 Sep 2015, 15:06
by Ashwini
Thank you very much., it's working properly.