diff options
author | friendica <info@friendica.com> | 2012-07-16 01:38:26 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-07-16 01:38:26 -0700 |
commit | b79212dcc8849058e71b4fe51fae4898c4c81d14 (patch) | |
tree | 8ee059ddc60d82384b7a3ee77c997ae9e8b6e34b /include/items.php | |
parent | c14845557047b949b550be752b92069a381fba71 (diff) | |
download | volse-hubzilla-b79212dcc8849058e71b4fe51fae4898c4c81d14.tar.gz volse-hubzilla-b79212dcc8849058e71b4fe51fae4898c4c81d14.tar.bz2 volse-hubzilla-b79212dcc8849058e71b4fe51fae4898c4c81d14.zip |
split up get_browser_language() to use in additional ways
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/items.php b/include/items.php index 7ca53a3a0..81e92d588 100755 --- a/include/items.php +++ b/include/items.php @@ -827,6 +827,8 @@ function item_store($arr,$force_parent = false) { $arr['body'] = strip_tags($arr['body']); $arr['lang'] = detect_language($arr['body']); + + $arr['wall'] = ((x($arr,'wall')) ? intval($arr['wall']) : 0); |