Diff for /loncom/interface/loncommon.pm between versions 1.1075.2.64 and 1.1075.2.65

version 1.1075.2.64, 2014/02/15 18:25:13 version 1.1075.2.65, 2014/02/17 17:14:30
Line 7655  function set_wishlistlink(title, path) { Line 7655  function set_wishlistlink(title, path) {
         title = document.title;          title = document.title;
         title = title.replace(/^LON-CAPA /,'');          title = title.replace(/^LON-CAPA /,'');
     }      }
       title = encodeURIComponent(title);
     if (!path) {      if (!path) {
         path = location.pathname;          path = location.pathname;
     }      }
       path = encodeURIComponent(path);
     Win = window.open('/adm/wishlist?mode=newLink&setTitle='+title+'&setPath='+path,      Win = window.open('/adm/wishlist?mode=newLink&setTitle='+title+'&setPath='+path,
                       'wishlistNewLink','width=560,height=350,scrollbars=0');                        'wishlistNewLink','width=560,height=350,scrollbars=0');
 }  }

Removed from v.1.1075.2.64  
changed lines
  Added in v.1.1075.2.65


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>