"; echo '
'; if (!$exist) { echo "$fortune_location" . _(" not found."); } else { echo "
" . _("Today's Fortune") . "
";
        system($fortune_location);
    } 
  
    echo '
'; } /** * Get fortune prefs * @access private */ function fortune_load() { global $username, $data_dir, $fortune_visible; $fortune_visible = getPref($data_dir, $username, 'fortune_visible'); } /** * Add fortune options * @access private */ function fortune_options() { global $fortune_visible; echo "" . html_tag('td',_("Fortunes:"),'right','','nowrap') . "\n"; echo ' " . _("Show fortunes at top of mailbox") . "\n"; } /** * Save fortune prefs * @access private */ function fortune_save() { global $username,$data_dir; if (isset($_POST['fortune_fortune_visible'])) { setPref($data_dir, $username, 'fortune_visible', '1'); } else { setPref($data_dir, $username, 'fortune_visible', ''); } } ?>