Skip to content

Commit

Permalink
fixing php syntax errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
padams committed Jan 15, 2010
1 parent dd59d3f commit 561acbe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions modules/base/templates/header.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
<LI><a href="<?php echo $this->makeLink(array('do' => 'base.optionsGeneral'));?>">Settings</a></LI>
<LI><a href="http://wiki.openwebanalytics.com">Help</a></LI>
<LI><a href="http://trac.openwebanalytics.com">Report a Bug</a></LI>
<? if ($this->config['is_embedded'] == false):?>
<?php if ($this->config['is_embedded'] == false):?>
<LI>
<? if (owa_coreAPI::isCurrentUserAuthenticated()):?>
<?php if (owa_coreAPI::isCurrentUserAuthenticated()):?>
<a href="<?php echo $this->makeLink(array('do' => 'base.logout'), false);?>">Logout</a>
<?php else:?>
<a href="<?php echo $this->makeLink(array('do' => 'base.loginForm'), false);?>">Login</a>
Expand Down
2 changes: 1 addition & 1 deletion modules/base/templates/options.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<TR>
<TD valign="top" id="nav_left">

<? foreach ($panels as $group => $items):?>
<?php foreach ($panels as $group => $items):?>

<H4><?php echo $group;?></H4>
<UL>
Expand Down

0 comments on commit 561acbe

Please sign in to comment.