diff options
author | redmatrix <mike@macgirvin.com> | 2016-08-25 17:43:07 -0700 |
---|---|---|
committer | redmatrix <mike@macgirvin.com> | 2016-08-25 17:43:07 -0700 |
commit | 38ea8bee935181220e89fd22120865ab63af9da6 (patch) | |
tree | f08406ca44b9a76a5a4ce001acc63cf05f763bd1 /Zotlabs/Module/Ratings.php | |
parent | a969f181379a350609b24ba8258fcdd204f07d11 (diff) | |
download | volse-hubzilla-38ea8bee935181220e89fd22120865ab63af9da6.tar.gz volse-hubzilla-38ea8bee935181220e89fd22120865ab63af9da6.tar.bz2 volse-hubzilla-38ea8bee935181220e89fd22120865ab63af9da6.zip |
ratings are gone. They can be enabled, but there is no UI for doing so at this time; and will likely only be available in a 'pro' configuration once the new implementation details have been hashed out. This appears to require a mechanism for rebuttal before it can again be opened to the public. There are also some synchronisation issues to contend with; as ratings are currently only distributed to active directory servers. There is no reliable mechanism for a new directory server to fetch existing ratings.
Diffstat (limited to 'Zotlabs/Module/Ratings.php')
-rw-r--r-- | Zotlabs/Module/Ratings.php | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/Zotlabs/Module/Ratings.php b/Zotlabs/Module/Ratings.php index 969fb5015..055b16ca3 100644 --- a/Zotlabs/Module/Ratings.php +++ b/Zotlabs/Module/Ratings.php @@ -21,12 +21,9 @@ class Ratings extends \Zotlabs\Web\Controller { if($x) $url = $x['url']; - $poco_rating = get_config('system','poco_rating_enable'); - // if unset default to enabled - if($poco_rating === false) - $poco_rating = true; + $rating_enabled = get_config('system','rating_enabled'); - if(! $poco_rating) + if(! $rating_enabled) return; if(argc() > 1) @@ -87,12 +84,9 @@ class Ratings extends \Zotlabs\Web\Controller { return; } - $poco_rating = get_config('system','poco_rating_enable'); - // if unset default to enabled - if($poco_rating === false) - $poco_rating = true; + $rating_enabled = get_config('system','rating_enabled'); - if(! $poco_rating) + if(! $rating_enabled) return; $site_target = ((array_key_exists('target',\App::$data) && array_key_exists('site_url',\App::$data['target'])) ? |