if (do_name() != 'Home') : ?>
endif ?>
Posted by Fred on Sep 07, 2007
the error seems to be cut off for some reason, here it is in it's full glory:
ValueError: NSInvalidArgumentException - *** -[NSBigMutableString replaceCharactersInRange:withString:]: nil argument
Posted by Tom De Smedt on Sep 08, 2007
There's a logical error in getText(): if tmp is between 0.5 and 0.6 no string (nil) is returned to the text() command.
You probably mean:
if tmp <= 0.5: return "Word1" if tmp >= 0.5: return "Word2"
Posted by Fred on Sep 10, 2007
include("util/comment.php"); ?>
I am embarrassed (to say the least). Big thanks for helping out!
Strange Error: NSInvalidArgumentException
Posted by Fred on Sep 07, 2007I'm getting a strange error ("open Console" or "Terminate" style):
This is from this really simple program: ----------------------------------------------------What's wrong?