\n";
- echo "".i18n("School Name")." school))."\" size=\"60\" maxlength=\"64\" /> \n";
+ echo "".i18n("School Name")." \n";
echo "".i18n("School Language")." ";
echo "";
echo "".i18n("Choose")." \n";
@@ -234,40 +234,40 @@
echo "".i18n($v)." \n";
}
echo " \n";
- echo "".i18n("School Level")." schoollevel)."\" size=\"32\" maxlength=\"32\" /> \n";
- echo "".i18n("School Board")." board)."\" size=\"60\" maxlength=\"64\" /> \n";
- echo "".i18n("School District")." district)."\" size=\"60\" maxlength=\"64\" /> \n";
- echo "".i18n("Address")." address)."\" size=\"60\" maxlength=\"64\" /> \n";
- echo "".i18n("City")." city)."\" size=\"32\" maxlength=\"32\" /> \n";
+ echo "".i18n("School Level")." \n";
+ echo "".i18n("School Board")." \n";
+ echo "".i18n("School District")." \n";
+ echo "".i18n("Address")." \n";
+ echo "".i18n("City")." \n";
echo "".i18n($config['provincestate'])." ";
- emit_province_selector("province_code",$r->province_code);
+ emit_province_selector("province_code",get_value_property_or_default($r, 'province_code', ''));
echo " \n";
- echo "".i18n($config['postalzip'])." postalcode\" size=\"8\" maxlength=\"7\" /> \n";
- echo "".i18n("Phone")." phone)."\" size=\"16\" maxlength=\"16\" /> \n";
- echo "".i18n("Fax")." fax)."\" size=\"16\" maxlength=\"16\" /> \n";
+ echo "".i18n($config['postalzip'])." \n";
+ echo "".i18n("Phone")." \n";
+ echo "".i18n("Fax")." \n";
- if($r->principal_uid > 0)
- $pl = user_load_by_uid($r->principal_uid);
+ if(get_value_property_or_default($r, 'principal_uid') > 0)
+ $pl = user_load_by_uid(get_value_property_or_default($r, 'principal_uid'));
else
$pl = array();
/* Don't show autogenerated emails */
- $e = $pl['email'][0] == '*' ? '' : $pl['email'];
- echo "".i18n("Principal")." \n";
- echo "".i18n("Principal Email")." \n";
+ $e = get_value_from_array($pl, 'email', 0) == '*' ? '' : get_value_from_array($pl, 'email');
+ echo "".i18n("Principal")." \n";
+ echo "".i18n("Principal Email")." \n";
- echo "".i18n("School Email")." schoolemail)."\" size=\"60\" maxlength=\"128\" /> \n";
- echo "".i18n("Access Code")." accesscode)."\" size=\"32\" maxlength=\"32\" /> \n";
+ echo "".i18n("School Email")." \n";
+ echo "".i18n("Access Code")." \n";
echo "".i18n("Science head/teacher or science fair contact at school")." ";
- if($r->sciencehead_uid > 0)
- $sh = user_load_by_uid($r->sciencehead_uid);
+ if(get_value_property_or_default($r, 'sciencehead_uid', '')> 0)
+ $sh = user_load_by_uid(get_value_property_or_default($r, 'sciencehead_uid', ''));
else
$sh = array();
/* Don't show autogenerated emails */
- $e = $sh['email'][0] == '*' ? '' : $sh['email'];
- echo "".i18n("Email")." \n";
- echo "".i18n("Name")." \n";
- echo "".i18n("Phone")." \n";
+ $e = get_value_from_2d_array($sh, 'email',0, '') == '*' ? '' : get_value_from_2d_array($sh,'email', '');
+ echo "".i18n("Email")." \n";
+ echo "".i18n("Name")." \n";
+ echo "".i18n("Phone")." \n";
if($config['participant_registration_type']=="schoolpassword")
{
@@ -299,7 +299,7 @@
}
echo "".i18n("Demographic Information")." ";
- $ch = ($r->atrisk) == 'yes' ? 'checked="checked"' : '';
+ $ch = get_value_property_or_default($r,'atrisk', '') == 'yes' ? 'checked="checked"' : '';
echo "".i18n("Inner City or At-Risk school")." \n";
echo " ";
echo " \n";
diff --git a/admin/translations.php b/admin/translations.php
index bb47d57f..71fd9760 100644
--- a/admin/translations.php
+++ b/admin/translations.php
@@ -48,7 +48,7 @@ if(!$show) $show="missing";
if(get_value_from_array($_POST, 'action') == "save") {
//first, delete anything thats supposed to eb deleted
- if(count($_POST['delete'])) {
+ if(count(get_value_from_array($_POST, 'delete', []))) {
foreach($_POST['delete'] AS $del) {
$stmt = $pdo->prepare("DELETE FROM translations WHERE lang='".$_SESSION['translang']."' AND strmd5='".$del."'");
@@ -103,7 +103,7 @@ echo " ";
if($show=="missing") $showquery="AND ( val is null OR val='' )";
else $showquery="";
-$q=$pdo->prepare("SELECT * FROM translations WHERE lang='".$_SESSION['translang']."' $showquery ORDER BY str");
+$q=$pdo->prepare("SELECT * FROM translations WHERE lang='".get_value_from_array($_SESSION, 'translang')."' $showquery ORDER BY str");
$q->execute();
$num=$q->rowCount();
echo i18n("Showing %1 translation strings",array($num),array("number of strings"));
@@ -131,6 +131,7 @@ echo "";
echo "";
echo " \n";
echo " ";
+global $translangname;
echo "".i18n("English")." / ".$translangname." \n";
while($r=$q->fetch(PDO::FETCH_OBJ))
{
diff --git a/admin/user_list.php b/admin/user_list.php
index e8703055..1b7e2730 100644
--- a/admin/user_list.php
+++ b/admin/user_list.php
@@ -34,7 +34,7 @@
require_once('judges.inc.php');
- $show_types = $_GET['show_types'];
+ $show_types = get_value_from_array($_GET, 'show_types', '');
if(user_valid_type($show_types) == false) $show_types = array('judge');
$show_complete = (get_value_from_array($_GET,'show_complete') == 'yes') ? 'yes' : 'no';
@@ -364,7 +364,7 @@ function update (id)
WHERE users_id='{$r['id']}'");
$rr = $qq->fetch(PDO::FETCH_ASSOC);
- $name = "{$rr['name']}".((trim($name)=='') ? '' : " ($name)");
+ $name = "{".get_value_from_array($rr, 'name')."}".((trim($name)=='') ? '' : " ($name)");
}
echo "$name ";
echo "";
diff --git a/admin/xml.inc.php b/admin/xml.inc.php
index e2001dbf..520a5c97 100644
--- a/admin/xml.inc.php
+++ b/admin/xml.inc.php
@@ -73,6 +73,7 @@ function xmlCreateRecurse($d)
# Mainfunction to parse the XML defined by URL
function xml_parsexml ($String) {
+ global $Data;
$Encoding=xml_encoding($String);
$String=xml_deleteelements($String,"?");
$String=xml_deleteelements($String,"!");
@@ -145,8 +146,9 @@ function xmlCreateRecurse($d)
}else {
if(substr_count($Node," ")){ $Node=substr($Node,0,strpos($String," ",$Start)-$Start); }
}
+ return $Node;
}
- return $Node;
+
}
diff --git a/fckeditor/fckeditor_php5.php b/fckeditor/fckeditor_php5.php
index 0f773984..02ebbfc0 100644
--- a/fckeditor/fckeditor_php5.php
+++ b/fckeditor/fckeditor_php5.php
@@ -155,7 +155,7 @@ class FCKeditor
*/
public function CreateHtml()
{
- $HtmlValue = htmlspecialchars( get_value_property_or_default($this, 'Value', 'sdf') ) ;
+ $HtmlValue = htmlspecialchars(get_value_property_or_default($this, 'Value', '')) ;
$Html = '' ;
diff --git a/helper.inc.php b/helper.inc.php
index 7b1b8586..d2a44390 100644
--- a/helper.inc.php
+++ b/helper.inc.php
@@ -19,6 +19,11 @@ function get_value_from_2d_array(array $ar, string $key1, string $key2, mixed $d
return isset($ar[$key1][$key2]) ? $ar[$key1][$key2] : $default;
}
+function get_value_from_3d_array(array $ar, string $key1, string $key2, string $key3, mixed $default = null) : mixed
+{
+ return isset($ar[$key1][$key2][$key3]) ? $ar[$key1][$key2][$key3] : $default;
+}
+
function get_value(mixed $var) : mixed
{
return isset($var) ? $var : null;
@@ -31,12 +36,11 @@ function get_value_or_default(mixed $var, mixed $default = null) : mixed {
function get_value_property_or_default(mixed $var, mixed $property, mixed $default = null) : mixed {
- return $var ? $var->$property : $default;
+ return $var && isset($var->$property) ? $var->$property : $default;
}
-
function show_pdo_errors_if_any($pdo)
{// Check for errors after the query execution
$errorInfo = $pdo->errorInfo();
diff --git a/judge.inc.php b/judge.inc.php
index c97b7bd4..f18fad8c 100644
--- a/judge.inc.php
+++ b/judge.inc.php
@@ -49,7 +49,7 @@ function judge_status_expertise(&$u)
$q->execute();
$r=$q->fetch(PDO::FETCH_OBJ);
$numcats=$r->num;
- if($numcats != count($u['cat_prefs'])) return 'incomplete';
+ if($numcats != count(get_value_from_array($u, 'cat_prefs', []))) return 'incomplete';
$q=$pdo->prepare("SELECT COUNT(id) AS num FROM projectdivisions WHERE year='".$config['FAIRYEAR']."'");
$q->execute();
diff --git a/lcsv.php b/lcsv.php
index 8d886e18..d968fee4 100644
--- a/lcsv.php
+++ b/lcsv.php
@@ -142,9 +142,9 @@ class lcsv
function output()
{
if($this->csvdata)
- {
- $filename=strtolower(get_value($this->page_subheader));
- $filename=preg_replace("[^a-z0-9]","_",$filename);
+ { print_r($this->page_subheader);
+ $filename=strtolower(get_value_property_or_default($this,'page_subheader', ''));
+ $filename=preg_replace("[^a-z0-9]","_",$filename);
//header("Content-type: application/csv");
header("Content-type: text/x-csv");
header("Content-disposition: inline; filename=sfiab_".$filename.".csv");
diff --git a/tableeditor.class.php b/tableeditor.class.php
index 104ad1d3..b9b899b1 100644
--- a/tableeditor.class.php
+++ b/tableeditor.class.php
@@ -131,6 +131,8 @@ class TableEditor
var $rowsPerPage;
var $activePage;
+ var $downloadLink;
+
var $DEBUG;
/**#@-*/
diff --git a/user.inc.php b/user.inc.php
index 0ae6a71f..baf837bd 100644
--- a/user.inc.php
+++ b/user.inc.php
@@ -521,7 +521,7 @@ function user_save(&$u)
* tables */
function user_delete_committee($u)
-{
+{ global $pdo;
$stmt = $pdo->prepare("DELETE FROM committees_link WHERE users_uid='{$u['uid']}'");
$stmt->execute();
}
@@ -533,6 +533,7 @@ function user_delete_volunteer($u)
function user_delete_judge($u)
{
global $config;
+ global $pdo;
$ids = array();
$q = $pdo->prepare("SELECT id FROM users WHERE uid = '{$u['uid']}'");
$q->execute();
@@ -542,7 +543,7 @@ function user_delete_judge($u)
$stmt = $pdo->prepare("DELETE FROM judges_teams_link WHERE users_id IN ($idlist)");
$stmt->execute();
- $stmt = $pdo->prepare("DELETE FROM judges_specialawards_sel WHERE users_id IN($idlist)");
+ $stmt = $pdo->prepare("DELETE FROM judges_specialaward_sel WHERE users_id IN($idlist)");
$stmt->execute();
}
@@ -582,7 +583,7 @@ function user_delete_alumni($u)
function user_delete($u, $type=false)
-{
+{ global $pdo;
$finish_delete = false;
if(!is_array($u)) {
@@ -612,8 +613,8 @@ function user_delete($u, $type=false)
call_user_func("user_delete_$type", $u);
} else {
/* Delete the whole user */
- if(is_array($u['types'])) {
- foreach($u['types'] as $t) call_user_func("user_delete_$t", $u);
+ if(is_array(get_value_from_array($u,'types'))) {
+ foreach(get_value_from_array($u,'types') as $t) call_user_func("user_delete_$t", $u);
}
$finish_delete = true;
}