diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-06 16:03:17 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-06 16:03:17 +0000 |
commit | 9f77de385e68429484ee08231ca190f23d964bbc (patch) | |
tree | 4d034cae05add0439677d7ea4fe97b0511063aba /mod | |
parent | 4a2866af1847eacbaf26a7af2aa019e44c6a526e (diff) | |
download | elgg-9f77de385e68429484ee08231ca190f23d964bbc.tar.gz elgg-9f77de385e68429484ee08231ca190f23d964bbc.tar.bz2 |
Javascript just about beaten into submission. Viewers of the public SVN, I apologise for clogging up the history view.
Here's a joke by way of penance:
git-svn-id: https://code.elgg.org/elgg/trunk@2671 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod')
-rw-r--r-- | mod/notifications/views/default/notifications/subscriptions/collections.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/notifications/views/default/notifications/subscriptions/collections.php b/mod/notifications/views/default/notifications/subscriptions/collections.php index 981e79823..1446b4e31 100644 --- a/mod/notifications/views/default/notifications/subscriptions/collections.php +++ b/mod/notifications/views/default/notifications/subscriptions/collections.php @@ -12,8 +12,8 @@ if ($("#"+method+members[i]).children("INPUT[type='checkbox']").attr('checked') != checked) {
$("#"+method+members[i]).children("INPUT[type='checkbox']").attr('checked', checked);
functioncall = 'adjust' + method + '_alt("'+method+members[i]+'");';
+ eval(functioncall);
}
- eval(functioncall);
}
}
|