aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2009-07-01 11:57:31 +0000
committerCash Costello <cash.costello@gmail.com>2009-07-01 11:57:31 +0000
commit16c6cb9372e5d7697c4d566d3ad3689c7f44807b (patch)
treedd0cba741375010c6fa8386ac69917d5b29ae9c2
parentd6d3d6e1b6740b3f9dd437219755ba0fa02fa185 (diff)
downloadelgg-16c6cb9372e5d7697c4d566d3ad3689c7f44807b.tar.gz
elgg-16c6cb9372e5d7697c4d566d3ad3689c7f44807b.tar.bz2
doctype requires onclick rather than onClick
-rw-r--r--views/default/tidypics/tagging.php4
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>";
}
}
}