Here is an edited fragment of the problem code.
bunch of code...
..
..
..
$Falbum="Sleep in Safety";
$Talbum="45 Grave - Sleep in Safety";
#I'm not actually assigning these strings in the code but prints show
#that these are the values causing troubles.
..
..
if ($Falbum ne $Talbum)
{
do stuff;
}
else
{
do other stuff
}
..
..
..
For some reason stuff isn't done and other stuff is but $Talbum is cleared.
--
Mark Healey
marknews(at)hea leyonline(dot)c om
bunch of code...
..
..
..
$Falbum="Sleep in Safety";
$Talbum="45 Grave - Sleep in Safety";
#I'm not actually assigning these strings in the code but prints show
#that these are the values causing troubles.
..
..
if ($Falbum ne $Talbum)
{
do stuff;
}
else
{
do other stuff
}
..
..
..
For some reason stuff isn't done and other stuff is but $Talbum is cleared.
--
Mark Healey
marknews(at)hea leyonline(dot)c om
Comment