diff options
author | friendica <info@friendica.com> | 2015-01-15 14:05:18 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-15 14:05:18 -0800 |
commit | 1c9299ed4224d37716079be173d75319d2501b71 (patch) | |
tree | 27a72ac0d09bcb67bdea55a8d24f9fd7ea8f4b9d /include/socgraph.php | |
parent | 56bc3bcdcee41d5ca6920c878aa8576dc673d039 (diff) | |
download | volse-hubzilla-1c9299ed4224d37716079be173d75319d2501b71.tar.gz volse-hubzilla-1c9299ed4224d37716079be173d75319d2501b71.tar.bz2 volse-hubzilla-1c9299ed4224d37716079be173d75319d2501b71.zip |
more backend work on poco rating
Diffstat (limited to 'include/socgraph.php')
-rw-r--r-- | include/socgraph.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/socgraph.php b/include/socgraph.php index 740886b1c..dbc25f9c1 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -117,6 +117,7 @@ function poco_load($xchan = '',$url = null) { $name = $entry['displayName']; $hash = $entry['hash']; $rating = ((array_key_exists('rating',$entry)) ? intval($entry['rating']) : 0); + $rating = ((array_key_exists('rating_text',$entry)) ? escape_tags($entry['rating_text']) :''); if(x($entry,'urls') && is_array($entry['urls'])) { foreach($entry['urls'] as $url) { @@ -188,17 +189,19 @@ function poco_load($xchan = '',$url = null) { ); if(! $r) { - q("insert into xlink ( xlink_xchan, xlink_link, xlink_rating, xlink_updated ) values ( '%s', '%s', %d, '%s' ) ", + q("insert into xlink ( xlink_xchan, xlink_link, xlink_rating, xlink_rating_text, xlink_updated ) values ( '%s', '%s', %d, '%s', '%s' ) ", dbesc($xchan), dbesc($hash), intval($rating), + dbesc($rating_text), dbesc(datetime_convert()) ); } else { - q("update xlink set xlink_updated = '%s', xlink_rating = %d where xlink_id = %d", + q("update xlink set xlink_updated = '%s', xlink_rating = %d, xlink_rating_text = '%s' where xlink_id = %d", dbesc(datetime_convert()), intval($rating), + dbesc($rating_text), intval($r[0]['xlink_id']) ); } |