Redirect to Category after Vote

Basti

Administrator
Staff member
VERSION 1.0#

Description
After voting, redirect the voter to the listed members category

Installation
Upload through admin plugin manager or directly via ftp. No database changes required, hence no install icon.

Requirements
Visiolist 1.0 or newer

Future Plans
- If member not on first page, go to page xx
- maybe highlight the member
 

Attachments

autosurf

Active Member
i put this plugin in V0.9, it's ok i just replace line in 83 in in.php
PHP:
    if ($go_to_rankings) {
      $vote_url = "{$CONF['list_url']}/";
 
      // Plugin hook, redirect after voting. simply call $vote_url via a plugin
      eval (PluginManager::getPluginManager ()->pluginHooks ('in_redirect'));
 
      header("Location: {$vote_url}");
      exit;
    }
 
Top