aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2011-05-16 12:54:05 +0200
committerChristian Weiske <cweiske@cweiske.de>2011-05-16 12:54:05 +0200
commit2c3f6338e36be8dbfe32e30d8a3094da4df5d978 (patch)
treee1f7b65c84e00c10bef0486b400225ae34f499b7
parent10214c43b51e99cc3f8f58a4c4e8893eb2480e62 (diff)
downloadsemanticscuttle-2c3f6338e36be8dbfe32e30d8a3094da4df5d978.tar.gz
semanticscuttle-2c3f6338e36be8dbfe32e30d8a3094da4df5d978.tar.bz2
there is no onClick attribute, only onclick
-rw-r--r--data/templates/editprofile.tpl.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/data/templates/editprofile.tpl.php b/data/templates/editprofile.tpl.php
index 258e864..70f340d 100644
--- a/data/templates/editprofile.tpl.php
+++ b/data/templates/editprofile.tpl.php
@@ -35,7 +35,9 @@ $this->includeTemplate($GLOBALS['top_include']);
<input type="text" id="pPrivateKey" name="pPrivateKey" size="40" value="<?php echo $privateKey;?>" readonly="readonly" />
<!--<input type="button" name="submittedPK" value="<?php echo T_('Generate New Key'); ?>" />-->
- <a onClick="getNewPrivateKey(this); return false;"><button type="submit" name="submittedPK" value="1"><?php echo T_('Generate New Key'); ?></button></a>
+ <a onclick="getNewPrivateKey(this); return false;">
+ <button type="submit" name="submittedPK" value="1"><?php echo T_('Generate New Key'); ?></button>
+ </a>
</td>
</tr>
</table>