Skip to content

Commit

Permalink
Fixed some minor issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
deiu committed Oct 10, 2012
1 parent b211e0d commit 57a5bb5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions account.php
Expand Up @@ -41,10 +41,10 @@

// display confirmation
if ($ok_del) {
$ret .= $_SESSION['myprofile']->success('Your profile has been deleted.');
$ret .= success('Your profile has been deleted.');
$ret .= "<div><br/>Attention: do not forget to delete the corresponding certificate from your browser, since it is useless now.</div>\n";
} else {
$ret .= $_SESSION['myprofile']->error('Could not remove your profile!');
$ret .= error('Could not remove your profile!');
}

// log user out and clear WebID session
Expand Down
2 changes: 1 addition & 1 deletion header.php
Expand Up @@ -159,7 +159,7 @@
echo "</ul>";
echo "</li>\n";
echo "<li class=\"divider\"></li>\n";
echo "<li><a href=\"".BASE_URI."?logoff\" onclick=\"logout();\">Log out?</a>";
echo "<li><a href=\"".BASE_URI."?logoff\" onclick=\"logout();\">";
echo "<img title=\"Sign out\" alt=\"Sign out\" src=\"".BASE_URI."/img/signout.png\"></a>";
echo "</li>\n";
} else {
Expand Down

0 comments on commit 57a5bb5

Please sign in to comment.