From 7272288c64d5bd9e3ae1f120e49987e0f4a839af Mon Sep 17 00:00:00 2001 From: james Date: Thu, 26 Jan 2006 23:10:39 +0000 Subject: [PATCH] Add language to populate_fake Add a bit of sanity checks to assignprojectnumbers -- make sure it assigns them all, or error out if it doesnt --- scripts/assignprojectnumbers.php | 15 ++++++++++++--- scripts/populate_fake.php | 5 ++++- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/scripts/assignprojectnumbers.php b/scripts/assignprojectnumbers.php index 654fc89e..cdb76d50 100644 --- a/scripts/assignprojectnumbers.php +++ b/scripts/assignprojectnumbers.php @@ -24,7 +24,7 @@ id; @@ -75,8 +75,17 @@ include "../common.inc.php"; $projectnumber=str_replace('N',$Nnum,$projectnumber); mysql_query("UPDATE projects SET projectnumber='$projectnumber' WHERE registrations_id='$reg_id' AND year='".$config['FAIRYEAR']."'"); - echo "Assigned new project number $projectnumber\n"; - + if($projectnumber) + { + echo "Assigned new project number $projectnumber\n"; + } + else + { + echo "Eeek! couldnt assign project number for $reg_id"; + exit; + } + $assigned++; } + echo "assigned=$assigned"; ?> diff --git a/scripts/populate_fake.php b/scripts/populate_fake.php index 7c0a1ebb..1bbc6628 100644 --- a/scripts/populate_fake.php +++ b/scripts/populate_fake.php @@ -86,8 +86,11 @@ for($x=0;$x<$numprojects;$x++) $req_tnum=rand(1,30); if($req_tnum==1) $req_t="no"; else $req_t="yes"; + $langnum=rand(1,10); + if($langnum<4) $lang="fr"; else $lang="en"; - mysql_query("INSERT INTO projects (registrations_id,projectcategories_id,projectdivisions_id,title,year,req_electricity,req_table) VALUES ('$id','$cat','$div','$title',2006,'$req_e','$req_t')"); + + mysql_query("INSERT INTO projects (registrations_id,projectcategories_id,projectdivisions_id,title,year,req_electricity,req_table,language) VALUES ('$id','$cat','$div','$title',2006,'$req_e','$req_t','$lang')"); } }