Restricting access to guests

In my SiteController I have restricted access to guests:




			array('allow', // allow authenticated user to perform 'create' and 'update' actions

				'actions'=>array('index', 'downloadPrint', 'verifyAcc'),

				'users'=>array('@'),

			),




But when I try to access it, it gives me this error

Usually it redirects me login page, not sure why it won’t now?

Must be that U changed something more in WebUser class, cause this error shows that U are asking for non existing property (WebUser.username).

I restarted my XAMPP and it works fine now