diff options
author | cash <cash.costello@gmail.com> | 2011-06-19 22:42:55 -0400 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-06-19 22:42:55 -0400 |
commit | 8edfc55bc7ee99955b3c82a59312df8c9d840bb7 (patch) | |
tree | 97e073b9c86073c5cda83fd42e8feb5246d590b7 /mod/thewire/start.php | |
parent | eb62ef75732c950ca31868a8d1240be98c95134d (diff) | |
download | elgg-8edfc55bc7ee99955b3c82a59312df8c9d840bb7.tar.gz elgg-8edfc55bc7ee99955b3c82a59312df8c9d840bb7.tar.bz2 |
fixed the wire's previous ajax - the link class for the menu was lost in the conversion from plain class to link_class
Diffstat (limited to 'mod/thewire/start.php')
-rw-r--r-- | mod/thewire/start.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/thewire/start.php b/mod/thewire/start.php index 0e6bd7794..2d66c475c 100644 --- a/mod/thewire/start.php +++ b/mod/thewire/start.php @@ -401,7 +401,7 @@ function thewire_setup_entity_menu_items($hook, $type, $value, $params) { 'text' => elgg_echo('thewire:previous'), 'href' => "thewire/previous/$entity->guid", 'priority' => 160, - 'class' => 'thewire-previous', + 'link_class' => 'thewire-previous', 'title' => elgg_echo('thewire:previous:help'), ); $value[] = ElggMenuItem::factory($options); |