aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHabeas Codice <habeascodice@federated.social>2015-02-20 19:48:51 -0800
committerHabeas Codice <habeascodice@federated.social>2015-02-20 19:48:51 -0800
commitffd47e6b9544c4ef717fdd545563831df84bf93b (patch)
treedd51723f50157afabdd46e871479617c3f9a8e58
parent6b4d5eedc4d583bcf03932dccef6413ed6445342 (diff)
downloadvolse-hubzilla-ffd47e6b9544c4ef717fdd545563831df84bf93b.tar.gz
volse-hubzilla-ffd47e6b9544c4ef717fdd545563831df84bf93b.tar.bz2
volse-hubzilla-ffd47e6b9544c4ef717fdd545563831df84bf93b.zip
catch negative ages
nix extra var
-rw-r--r--include/zot.php13
1 files changed, 7 insertions, 6 deletions
diff --git a/include/zot.php b/include/zot.php
index 98b54a04c..0d8fe8714 100644
--- a/include/zot.php
+++ b/include/zot.php
@@ -2244,10 +2244,11 @@ function import_directory_profile($hash,$profile,$addr,$ud_flags = UPDATE_FLAGS_
dbesc($hash)
);
- $age = intval($arr['xprof_age']);
- if($age > 150)
- $age = 150;
-
+ if($arr['xprof_age'] > 150)
+ $arr['xprof_age'] = 150;
+ if($arr['xprof_age'] < 0)
+ $arr['xprof_age'] = 0;
+
if($r) {
$update = false;
foreach($r[0] as $k => $v) {
@@ -2276,7 +2277,7 @@ function import_directory_profile($hash,$profile,$addr,$ud_flags = UPDATE_FLAGS_
where xprof_hash = '%s'",
dbesc($arr['xprof_desc']),
dbesc($arr['xprof_dob']),
- $age,
+ intval($arr['xprof_age']),
dbesc($arr['xprof_gender']),
dbesc($arr['xprof_marital']),
dbesc($arr['xprof_sexual']),
@@ -2299,7 +2300,7 @@ function import_directory_profile($hash,$profile,$addr,$ud_flags = UPDATE_FLAGS_
dbesc($arr['xprof_hash']),
dbesc($arr['xprof_desc']),
dbesc($arr['xprof_dob']),
- $age,
+ intval($arr['xprof_age']),
dbesc($arr['xprof_gender']),
dbesc($arr['xprof_marital']),
dbesc($arr['xprof_sexual']),