Just recently installed this extension and kept getting an error when editing admin user password - turns out there is a typo (extra 's') in the tableName function below - I'll try to fork it but new to Git and pushed for time.
public function tableName()
{
if (isset(Yum::module('profile')->profileFieldTable))
$this->_tableName = Yum::module('profile')->profileFieldsTable; // ERROR HERE should be 'profileFieldTable'
else
$this->_tableName = 'profile_field'; // fallback if nothing is set
public function tableName()
{
if (isset(Yum::module('profile')->profileFieldTable))
$this->_tableName = Yum::module('profile')->profileFieldTable;
else
$this->_tableName = 'profile_field'; // fallback if nothing is set
From yii-user-management_0.8rc6.tar.bz2
Just recently installed this extension and kept getting an error when editing admin user password - turns out there is a typo (extra 's') in the tableName function below - I'll try to fork it but new to Git and pushed for time.
public function tableName() { if (isset(Yum::module('profile')->profileFieldTable)) $this->_tableName = Yum::module('profile')->profileFieldsTable; // ERROR HERE should be 'profileFieldTable' else $this->_tableName = 'profile_field'; // fallback if nothing is set
To
public function tableName() { if (isset(Yum::module('profile')->profileFieldTable)) $this->_tableName = Yum::module('profile')->profileFieldTable; else $this->_tableName = 'profile_field'; // fallback if nothing is set