--- careers.php 2001/03/12 14:01:50 1.8 +++ careers.php 2001/09/18 10:26:46 1.14 @@ -9,6 +9,7 @@ $section=str_replace(".php","",basename($PHP_SELF)); $smarty->assign("section",$section); +include("common.inc"); $title="CAREERS"; if ($menu_item) $title.=" : $menu_item"; $lpic="careers"; $lext=".jpg"; @@ -19,6 +20,11 @@ $main=join('',file($main_file)); } elseif (file_exists("./templates/Careers-".$part.".tpl")) { + if ($part == "Mail" && !check_required()) $part="ApplicationForm"; + + $sql="select num,title,job_code,department,open_position_locations.location as location,description,edu_req,qual_req,open_position_locations.email as sendto + from open_positions,open_position_locations + where open_positions.location_id=open_position_locations.id and $visible_is_true"; if ($part == "ApplicationForm") { $sth = $dbh->prepare("select iso,name from countries order by name"); $sth->execute(); @@ -28,14 +34,18 @@ $smarty->assign("countries",$countries); if ($position) { - $sth = $dbh->prepare("select num,title,job_code,department,location from open_positions where visible is true and num=$position"); + $sql.=" and num=$position"; + $sth = $dbh->prepare($sql); $sth->execute(); if ($row=$sth->fetchrow_hash()) { + include("rot13.inc"); + $row[sendto]=rot13($row[sendto]); $smarty->assign("position",$row); } } } elseif ($part == "OpenPositions") { - $sth = $dbh->prepare("select num,title,job_code,department,location,description,edu_req,qual_req from open_positions where visible is true order by num asc"); + $sql.=" and expiration >= date('now') order by num asc"; + $sth = $dbh->prepare($sql); $sth->execute(); while ($row=$sth->fetchrow_hash()) { $positions[]=$row; @@ -64,9 +74,14 @@ "; $smarty->assign("mail","You sent following e-mail:
$mail
"); include("class.CMailFile"); - $sendto="careercenter@pliva.hr"; + if (!isset($sendto) || !strstr($sendto,"@")) { + $sendto="careercenter@pliva.hr"; + } else { + include("rot13.inc"); + $sendto=rot13($sendto); + } $replyto="$first_name $last_name <$email>"; - $mailfile = new CMailFile("application for submission",$sendto,$replyto,$mail,$resume); + $mailfile = new CMailFile("Application for $open_position",$sendto,$replyto,$mail,$resume); $mailfile->sendfile(); @unlink($resume); } @@ -80,7 +95,6 @@ $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, Section_title=>$title ) ); -include("common.inc"); $smarty->assign("MAIN",$main); $smarty->assign("contact_url","careers.php?part=ContactUs");