Home
last modified time | relevance | path

Searched refs:vote_log (Results 1 – 1 of 1) sorted by relevance

/plugin/vote/
Dsyntax.php73 $vote_log = $this->_read_vote_log( $title );
85 $this->_user_check( $vote_log, $param ) ){
92 $vote_log[ 'results' ][ $option ] += 1;
93 $vote_log[ 'votes' ] += 1;
94 $vote_log[ 'ips' ][] = clientIP( true );
96 $vote_log[ 'users' ][] = $USERINFO['name'];
100 $this->_write_vote_log( $title, $vote_log );
104 $output .= $this->_print_vote_form( $vote_log );
115 function _user_check( $vote_log, $param ) { argument
127 if ( isset( $vote_log['ips'] ) && in_array( $ip, $vote_log['ips'] ) ) {
[all …]