--- loncom/interface/loncommon.pm 2014/02/12 20:29:35 1.1174 +++ loncom/interface/loncommon.pm 2014/02/16 22:04:14 1.1175 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # a pile of common routines # -# $Id: loncommon.pm,v 1.1174 2014/02/12 20:29:35 raeburn Exp $ +# $Id: loncommon.pm,v 1.1175 2014/02/16 22:04:14 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -7656,9 +7656,11 @@ function set_wishlistlink(title, path) { title = document.title; title = title.replace(/^LON-CAPA /,''); } + title = encodeURIComponent(title); if (!path) { path = location.pathname; } + path = encodeURIComponent(path); Win = window.open('/adm/wishlist?mode=newLink&setTitle='+title+'&setPath='+path, 'wishlistNewLink','width=560,height=350,scrollbars=0'); }