. // TODO: - find out if this is used (add some logging mechanism or so) // - if used rewrite code to use display functions from util.inc // - if used find a way to give the user a language choice (projects must translate messages themself) require_once("../inc/util.inc"); check_get_args(array()); $user = get_logged_in_user(); if (!@file_get_contents('../ops/ffmail/subject')) { error_page(tra("This project hasn't created an email message - please notify its administrators")); } page_head(tra("Tell your friends about %1", PROJECT)); echo "
".tra("Help us by telling your friends, family and coworkers about %1", PROJECT)."

".tra("Fill in this form with the names and email addresses of people you think might be interested in %1. We'll send them an email in your name, and you can add your own message if you like.", PROJECT)."

name\"> email_addr\"> "; for ($i=0; $i<5; $i++) { echo " "; } echo "
".tra("Your name:")."".tra("Your email address:")."
$user->name$user->email_addr
".tra("Friend's name:")."".tra("Friend's email address:")."
".tra("Additional message (optional)")."
"; page_tail(); ?>