diff options
Diffstat (limited to 'mod/connedit.php')
-rw-r--r-- | mod/connedit.php | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/mod/connedit.php b/mod/connedit.php index 87d5e9eca..c27f4588a 100644 --- a/mod/connedit.php +++ b/mod/connedit.php @@ -534,11 +534,21 @@ function connedit_content(&$a) { )); } + $poco_rating = get_config('system','poco_rating_enable'); + // if unset default to enabled + if($poco_rating === false) + $poco_rating = true; + + if($poco_rating) { + $rating = replace_macros(get_markup_template('rating_slider.tpl'),array( + '$min' => -10, + '$val' => (($contact['abook_rating']) ? $contact['abook_rating'] : 0), + )); + } + else { + $rating = false; + } - $rating = replace_macros(get_markup_template('rating_slider.tpl'),array( - '$min' => -10, - '$val' => (($contact['abook_rating']) ? $contact['abook_rating'] : 0), - )); $perms = array(); $channel = $a->get_channel(); |