Update of /cvsroot/freevo/freevo/src/www/htdocs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6663

Modified Files:
        favorites.rpy 
Log Message:
Oops... don't do the replace until the 'name' actually exists.


Index: favorites.rpy
===================================================================
RCS file: /cvsroot/freevo/freevo/src/www/htdocs/favorites.rpy,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** favorites.rpy       20 May 2004 15:45:07 -0000      1.16
--- favorites.rpy       20 May 2004 15:56:12 -0000      1.17
***************
*** 12,18 ****
  # -----------------------------------------------------------------------
  # $Log$
! # Revision 1.16  2004/05/20 15:45:07  outlyer
! # Fixes for favorites containing the '&' symbol... covert it from the HTML
! # "%26" into "&"
  #
  # Revision 1.15  2004/03/13 18:32:29  rshortt
--- 12,17 ----
  # -----------------------------------------------------------------------
  # $Log$
! # Revision 1.17  2004/05/20 15:56:12  outlyer
! # Oops... don't do the replace until the 'name' actually exists.
  #
  # Revision 1.15  2004/03/13 18:32:29  rshortt
***************
*** 137,141 ****
          oldname = fv.formValue(form, 'oldname')
          name = fv.formValue(form, 'name')
!         name = string.replace(name,'%26','&')
          title = fv.formValue(form, 'title')
          chan = fv.formValue(form, 'chan')
--- 136,140 ----
          oldname = fv.formValue(form, 'oldname')
          name = fv.formValue(form, 'name')
!         if name: name = string.replace(name,'%26','&')
          title = fv.formValue(form, 'title')
          chan = fv.formValue(form, 'chan')



-------------------------------------------------------
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to