View Issue Details

IDProjectCategoryView StatusLast Update
0000680HTML & PERLBug Report - Interfacepublic2007-06-30 22:45
ReporterAmour Assigned Tofahrenheit  
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Summary0000680: Adding subtitle file relation is not possible anymore
DescriptionExample of page:
http://anidb.info/perl-bin/animedb.pl?show=file&show.filereladd=1&fid=269494

On the Add File Relation page, it was possible to select a type of relation and a file. But now, when you select type "external-sub-for" or "newer-ver-of", the list gets immediatly completly empty.

I use IE7, and it used to work correctly.
TagsNo tags attached.

Activities

fahrenheit

2007-06-30 21:31

reporter   ~0001327

i know you are using IE7 :P
yeah it's a IE7 issue, i'm fixing it in the meanwhile, should e ready in couple of hours, sorry for the inconvenience.

fahrenheit

2007-06-30 22:45

reporter   ~0001328

Let me start by saying what was the problem:

var option = fileList.options[i].cloneNode(true);

this is an ordinary cloneNode, IE never the less manages to lose the text portion of the option, so as a very ugly hack for it we have this:

if (!option.text.length && option.innerText) option.text = option.innerText; // IE hack

Isn't it nice?

Fixed never the less.

Issue History

Date Modified Username Field Change
2007-06-30 15:30 Amour New Issue
2007-06-30 19:54 epoximator Status new => assigned
2007-06-30 19:54 epoximator Assigned To => fahrenheit
2007-06-30 21:31 fahrenheit Note Added: 0001327
2007-06-30 21:31 fahrenheit Status assigned => confirmed
2007-06-30 22:45 fahrenheit Status confirmed => resolved
2007-06-30 22:45 fahrenheit Resolution open => fixed
2007-06-30 22:45 fahrenheit Note Added: 0001328