1<?php
2/* Remove the if clause to display the button to anonymous users as well. */
3if(isset($_SERVER['REMOTE_USER'])) {
4 global $lang;
5 $lang['btn_recommend'] = 'Recommend';
6 echo html_btn('recommend',$ID,null,array('do' => 'recommend', 'id' => $ID));
7}
8?>
9