OSDN Git Service

BugTrack/2367 CSS reformat
[pukiwiki/pukiwiki.git] / plugin / nofollow.inc.php
1 <?php
2 // $Id: nofollow.inc.php,v 1.1 2005/05/23 14:22:30 henoheno Exp $
3 // Copyright (C) 2005 PukiWiki Developers Team
4 // License: The same as PukiWiki
5 //
6 // NoFollow plugin
7
8 // Output contents with "nofollow,noindex" option
9 function plugin_nofollow_convert()
10 {
11         global $vars, $nofollow;
12
13         $page = isset($vars['page']) ? $vars['page'] : '';
14
15         if(is_freeze($page)) $nofollow = 1;
16
17         return '';
18 }
19 ?>