Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions config/ZfcUserAdmin.global.php.dist
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
* drop this config file in it and change the values as you wish.
*/
$settings = array(


/**
* Mapper for ZfcUser
*
Expand All @@ -19,7 +17,7 @@ $settings = array(
* By default this is using
* ZfcUserAdmin\Mapper\UserZendDb
*/
'user_mapper' => 'ZfcUserAdmin\Mapper\UserDoctrine',
'user_mapper' => 'ZfcUserAdmin\Mapper\UserZendDb',
);

/**
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcUserAdmin/Options/ModuleOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class ModuleOptions extends AbstractOptions implements
*/
protected $allowPasswordChange = true;

protected $userMapper = 'ZfcUserAdmin\Mapper\UserDoctrine';
protected $userMapper = 'ZfcUserAdmin\Mapper\UserZendDb';

public function setUserMapper($userMapper)
{
Expand Down