diff options
author | friendica <info@friendica.com> | 2015-02-13 14:25:04 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-02-13 14:25:04 -0800 |
commit | 59828593c14a64cecf7ee5c077da9f918062ed60 (patch) | |
tree | 58bdb2b307180b4684093e25cac2968fe0751878 | |
parent | 46eda6e72371fd5fb9e6810fd9ef68b659ffb308 (diff) | |
download | volse-hubzilla-59828593c14a64cecf7ee5c077da9f918062ed60.tar.gz volse-hubzilla-59828593c14a64cecf7ee5c077da9f918062ed60.tar.bz2 volse-hubzilla-59828593c14a64cecf7ee5c077da9f918062ed60.zip |
some ratings fixes
-rw-r--r-- | include/dir_fns.php | 2 | ||||
-rw-r--r-- | include/socgraph.php | 23 |
2 files changed, 1 insertions, 24 deletions
diff --git a/include/dir_fns.php b/include/dir_fns.php index 8c0161ff1..5ed626b8a 100644 --- a/include/dir_fns.php +++ b/include/dir_fns.php @@ -247,7 +247,7 @@ function sync_directories($dirmode) { logger('rating updated'); } else { - $z = q("insert into xlink ( xlink_xchan, xlink_link, xlink_rating, xlink_rating_text, xlink_sig, xlink_updated, xlink_static ) values( '%s', '%s', %d, '%s', '%s', 1 ) ", + $z = q("insert into xlink ( xlink_xchan, xlink_link, xlink_rating, xlink_rating_text, xlink_sig, xlink_updated, xlink_static ) values( '%s', '%s', %d, '%s', '%s', '%s', 1 ) ", dbesc($rr['channel']), dbesc($rr['target']), intval($rr['rating']), diff --git a/include/socgraph.php b/include/socgraph.php index 13957e814..59830ef1b 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -185,29 +185,6 @@ function poco_load($xchan = '',$url = null) { $total ++; - - $r = q("select * from xlink where xlink_xchan = '%s' and xlink_link = '%s' and xlink_static = 0 limit 1", - dbesc($xchan), - dbesc($hash) - ); - - if(! $r) { - q("insert into xlink ( xlink_xchan, xlink_link, xlink_rating, xlink_rating_text, xlink_updated, xlink_static ) values ( '%s', '%s', %d, '%s', '%s', 0 ) ", - dbesc($xchan), - dbesc($hash), - intval($rating), - dbesc($rating_text), - dbesc(datetime_convert()) - ); - } - else { - 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']) - ); - } } logger("poco_load: loaded $total entries",LOGGER_DEBUG); |