1<?php
2/**
3 * Options for the rater plugin
4 */
5
6$conf['voting_restriction'] = true;              // restrict ip address voting (true or false)
7$conf['vote_qty']           = 1;                  // how many times an ip address can vote
8$conf['already_rated_msg']  ="You have already rated this item. You were allowed %s vote(s).";
9$conf['not_selected_msg']   ="You have not selected a rating value.";
10$conf['thankyou_msg']       ="Thank you for voting.";
11$conf['generic_text']       ="this item";        // generic item text
12$conf['eol_char']           ="\n";               // to separate the records
13