diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-07-01 11:57:31 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-07-01 11:57:31 +0000 |
commit | 16c6cb9372e5d7697c4d566d3ad3689c7f44807b (patch) | |
tree | dd0cba741375010c6fa8386ac69917d5b29ae9c2 /views | |
parent | d6d3d6e1b6740b3f9dd437219755ba0fa02fa185 (diff) | |
download | elgg-16c6cb9372e5d7697c4d566d3ad3689c7f44807b.tar.gz elgg-16c6cb9372e5d7697c4d566d3ad3689c7f44807b.tar.bz2 |
doctype requires onclick rather than onClick
Diffstat (limited to 'views')
-rw-r--r-- | views/default/tidypics/tagging.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/default/tidypics/tagging.php b/views/default/tidypics/tagging.php index 9bd585ea1..eb5f7e208 100644 --- a/views/default/tidypics/tagging.php +++ b/views/default/tidypics/tagging.php @@ -38,11 +38,11 @@ $content .= "<input type='hidden' name='word' id='word' value='' />";
$content .= "<ul id='tidypics_phototag_list'>";
- $content .= "<li><a href='javascript:void(0)' onClick='selectUser({$viewer->getGUID()},\"{$viewer->name}\")'> {$viewer->name} (" . elgg_echo('me') . ")</a></li>";
+ $content .= "<li><a href='javascript:void(0)' onclick='selectUser({$viewer->getGUID()},\"{$viewer->name}\")'> {$viewer->name} (" . elgg_echo('me') . ")</a></li>";
if ($friends) {
foreach($friends as $friend) {
- $content .= "<li><a href='javascript:void(0)' onClick='selectUser({$friend->getGUID()}, \"{$friend->name}\")'>{$friend->name}</a></li>";
+ $content .= "<li><a href='javascript:void(0)' onclick='selectUser({$friend->getGUID()}, \"{$friend->name}\")'>{$friend->name}</a></li>";
}
}
}
|