2003-07-11 22:33:59 +00:00
|
|
|
<?php
|
|
|
|
|
2004-02-03 19:17:52 +00:00
|
|
|
require_once("../inc/profile.inc");
|
2003-07-11 22:33:59 +00:00
|
|
|
|
2004-12-20 18:29:15 +00:00
|
|
|
db_init();
|
|
|
|
|
2003-07-11 22:33:59 +00:00
|
|
|
$user = get_logged_in_user(true);
|
2007-10-11 15:28:12 +00:00
|
|
|
if ($user->total_credit > 0) {
|
2007-10-24 18:58:23 +00:00
|
|
|
show_profile_creation_page($user);
|
2007-10-11 15:28:12 +00:00
|
|
|
} else {
|
2007-10-24 18:58:23 +00:00
|
|
|
page_head("Not available");
|
|
|
|
echo "You must have returned results and received credit
|
2007-10-11 15:28:12 +00:00
|
|
|
before you can create a profile.
|
2007-10-24 18:58:23 +00:00
|
|
|
";
|
|
|
|
page_tail();
|
2007-10-11 15:28:12 +00:00
|
|
|
}
|
2003-07-11 22:33:59 +00:00
|
|
|
|
2003-07-15 22:29:39 +00:00
|
|
|
?>
|