--- sections/pisite_nam.inc 2001/09/18 13:21:43 1.2 +++ sections/pisite_nam.inc 2001/11/21 09:10:52 1.4 @@ -24,7 +24,12 @@ $email=str_replace(" ","",$email); $email_val=explode(",",$email); -$sth = $dbh->prepare("select iso,name from countries order by name"); +$countries[]=array( + "iso" => "SI", + "name" => "Slovenia" + ); + +$sth = $dbh->prepare("select iso,name from countries where upper(iso)<>'SI' order by name"); $sth->execute(); while ($row=$sth->fetchrow_hash()) { $countries[]=$row; @@ -34,7 +39,7 @@ )); if (isset($mailto) && check_required()) { - $main="Your comment is sent to $mailto. Thank you."; + $main="Sporočilo je bilo poslano na naslov $mailto. Hvala."; include("quoted-printable.inc"); iso_mail("$fullname ($country) <$mailfrom>",$mailto,$subject,$comment); # $main.="
$mailto $fullname $mailfrom $country $subject $comment
";