aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/Menu.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2007-10-07 10:37:06 +0000
committerFelix Domke <tmbinc@elitedvb.net>2007-10-07 10:37:06 +0000
commit09f2e2935df89c375633517884682151de3d9741 (patch)
tree6e73e3669db9966a83e7def8dbc8bb8070dd59f7 /lib/python/Screens/Menu.py
parent567cf170322df2e897871787255c50bd522e6313 (diff)
downloadenigma2-09f2e2935df89c375633517884682151de3d9741.tar.gz
enigma2-09f2e2935df89c375633517884682151de3d9741.zip
add entryid to WHERE_MENU, add entryids in local plugins (patch by Moritz Venn, 005_enigma2_add_entryid_support_to_where_menu.patch)
Diffstat (limited to 'lib/python/Screens/Menu.py')
-rw-r--r--lib/python/Screens/Menu.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/Menu.py b/lib/python/Screens/Menu.py
index 6ea0f647..2b8ac05d 100644
--- a/lib/python/Screens/Menu.py
+++ b/lib/python/Screens/Menu.py
@@ -188,7 +188,7 @@ class Menu(Screen):
if menuID is not None:
# plugins
for l in plugins.getPluginsForMenu(menuID):
- list.append((l[0], boundFunction(l[1], self.session)))
+ list.append((l[0], boundFunction(l[1], self.session), l[2]))
# for the skin: first try a menu_<menuID>, then Menu
self.skinName = [ ]