Quote:
Originally posted by Boofo
But is there a way to have it not even show the "-" if we don't want it to? 
|
Find:
PHP Code:
$birthday_children[yas]=$greetingyear- (integer)substr($birthday_children[birthday],0, 5);
if ($birthday_children[yas]>110) {$birthday_children[yas]='-';
Replace it as:
PHP Code:
$birthday_childrenyas=$greetingyear- (integer)substr($birthday_children[birthday],0, 5);
$birthday_children[yas]="I congratulate your new age $birthday_childrenyas!";
if ($birthday_childrenyas>110) {$birthday_children[yas]='';
Then find and delete these lines below:
PHP Code:
if ($birthday_children[yas]!='-') {$greeting_thread.="(".$birthday_children[yas].")";}
and 2 instances of :
PHP Code:
if ($birthday_children[yas]!='-') {$admin_report_text.="(".$birthday_children[yas].")";}