-
Notifications
You must be signed in to change notification settings - Fork 9
/
translatorlounge.php
31 lines (26 loc) · 1.1 KB
/
translatorlounge.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
// translator ready
// addnews ready
// mail ready
require_once("common.php");
require_once("lib/commentary.php");
require_once("lib/sanitize.php");
require_once("lib/http.php");
check_su_access(SU_IS_TRANSLATOR);
addcommentary();
tlschema("translatorlounge");
require_once("lib/superusernav.php");
superusernav();
$op = httpget('op');
page_header("Translator Lounge");
output("`^You duck into a secret cave that few know about. ");
if ($session['user']['sex']){
output("Inside you are greeted by the sight of numerous muscular bare-chested men who wave palm fronds at you and offer to feed you grapes as you lounge on Greco-Roman couches draped with silk.`n`n");
}else{
output("Inside you are greeted by the sight of numerous scantily clad buxom women who wave palm fronds at you and offer to feed you grapes as you lounge on Greco-Roman couches draped with silk.`n`n");
}
commentdisplay("", "trans-lounge","Engage in idle conversation with other translators:",25);
addnav("Actions");
if ($session['user']['superuser'] & SU_IS_TRANSLATOR) addnav("U?Untranslated Texts", "untranslated.php");
page_footer();
?>