diff --git a/htdocs/includes/jquery/mobile/jquery.mobile-1.0a1.js b/htdocs/includes/jquery/mobile/jquery.mobile-1.0a1.js index 06b65f566b1..d00d7655b9a 100644 --- a/htdocs/includes/jquery/mobile/jquery.mobile-1.0a1.js +++ b/htdocs/includes/jquery/mobile/jquery.mobile-1.0a1.js @@ -2268,7 +2268,9 @@ $.widget( "mobile.listview", $.mobile.widget, { var list = $( this ), parent = list.parent(), title = parent.contents()[ 0 ].nodeValue.split("\n")[0], - id = parentId + "&" + $.mobile.subPageUrlKey + "=" + $.mobile.idStringEscape(title + " " + i), + // DOLFIX - Regis - bug in nested list + //id = parentId + "&" + $.mobile.subPageUrlKey + "=" + $.mobile.idStringEscape(title + " " + i), + id = parentId + "&" + $.mobile.subPageUrlKey + "=" + $.mobile.idStringEscape(title + "-" + i), theme = list.data( "theme" ) || o.theme, countTheme = list.data( "counttheme" ) || parentList.data( "counttheme" ) || o.countTheme, newPage = list.wrap( "
" ) diff --git a/htdocs/theme/phones/smartphone/tpl/header.tpl.php b/htdocs/theme/phones/smartphone/tpl/header.tpl.php index fd1c9572c13..fb848b8cfce 100644 --- a/htdocs/theme/phones/smartphone/tpl/header.tpl.php +++ b/htdocs/theme/phones/smartphone/tpl/header.tpl.php @@ -35,7 +35,10 @@ header("Content-type: text/html; charset=".$conf->file->character_set_client); + +