Skip to content

Commit

Permalink
Merge branch 'master' into orchestra
Browse files Browse the repository at this point in the history
  • Loading branch information
gwoo committed Sep 14, 2011
2 parents b1a0be4 + 678d090 commit 9440083
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions views/layouts/default.html.php
Expand Up @@ -10,7 +10,7 @@
<html>
<head>
<?php echo $this->html->charset();?>
<title>▴❍ <?php echo $this->title?></title>
<title>#li3 > ▴❍ > <?php echo $this->title?></title>
<?php echo $this->html->style(array('reset', 'base.css?1', 'forms.css?1', 'polish.css?1', 'sphere.css?1'));?>
<?php echo $this->scripts();?>
<?php echo $this->html->link('Icon', null, array('type' => 'icon'));?>
Expand All @@ -21,10 +21,10 @@
<h2><?php echo $this->html->link('power of community', '/');?></h2>
<div class="nav account">
<?php
if ($user = $this->user->session()) {
if ($session = $this->user->session()) {
echo $this->html->image(
'http://gravatar.com/avatar/' . md5($user['email']) . '?s=16',
array('title' => $user['_id'])
'http://gravatar.com/avatar/' . md5($session['email']) . '?s=16',
array('title' => $session['_id'])
);
echo $this->html->link('logout', array(
'controller' => 'users', 'action' => 'logout'
Expand Down

0 comments on commit 9440083

Please sign in to comment.