yum auth

i am using yum for auth however when i try to send the auth info, username/password it redirects to a controller that is not there

controller that is trying to access is

index.php?r=user/auth/Array

of course ARRAY is not a action

however it does look like it logged in

my login page look slike




<div class="form">

<form method="post" action="/test/index.php?r=user/auth">			

	<div class="row">

		<label for="YumUserLogin_email">Email</label>		

<input type="text" id="YumUserLogin_username" name="YumUserLogin[username]">	

</div>

	

	<div class="row">

		<label for="YumUserLogin_password">Password</label>		

<input type="password" id="YumUserLogin_password" name="YumUserLogin[password]">	

</div>

	

	<div class="row">

	<p class="hint">

	<a href="/test/index.php?r=registration/registration/registration">Sign Up</a> | <a href="/test/index.php?r=registration/registration/recovery">Lost password?</a></p>

</div>


<div class="row rememberMe">

<input type="hidden" name="YumUserLogin[rememberMe]" value="0" id="ytYumUserLogin_rememberMe"><input type="checkbox" value="1" id="YumUserLogin_rememberMe" name="YumUserLogin[rememberMe]"><label for="YumUserLogin_rememberMe">Remember me next time</label></div>




<div class="row submit">

<input type="image" value="submit" name="yt0" src="/test/images/buttons/login.jpg"> 

</div>


</form></div>



how to fix??

fixed