-bug CC-1823 should be fixed.

This commit is contained in:
martin 2011-01-30 16:47:11 -05:00
parent 7c70385528
commit 0ba5a1f520
14 changed files with 67 additions and 38 deletions

View file

@ -0,0 +1,19 @@
<?php
class Airtime_View_Helper_LoggedInAs extends Zend_View_Helper_Abstract
{
public function loggedInAs ()
{
//$username = "test";
/*
$auth = Zend_Auth::getInstance();
if ($auth->hasIdentity()) {
$username = $auth->getIdentity()->username;
}
*/
return "test";
}
}
?>