now using req.action instead of getActionName()
This commit is contained in:
parent
a41cbd2e8c
commit
2e007fb99d
2 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@
|
|||
function loginstatus_macro(param) {
|
||||
if (user.uid)
|
||||
this.members.renderSkin("statusloggedin");
|
||||
else if (getActionName() != "login")
|
||||
else if (req.action != "login")
|
||||
this.members.renderSkin("statusloggedout");
|
||||
}
|
||||
|
||||
|
|
|
@ -407,7 +407,7 @@ function shortdateformat_macro(param) {
|
|||
function loginstatus_macro(param) {
|
||||
if (user.uid)
|
||||
this.members.renderSkin("statusloggedin");
|
||||
else if (getActionName() != "login")
|
||||
else if (req.action != "login")
|
||||
this.members.renderSkin("statusloggedout");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue