]> git.mxchange.org Git - friendica-addons.git/blob - jappixmini/jappix/php/upload.php
Merge branch '3.6-release'
[friendica-addons.git] / jappixmini / jappix / php / upload.php
1 <?php
2
3 /*
4
5 Jappix - An open social platform
6 This is the Jappix Static PHP/HTML code
7
8 -------------------------------------------------
9
10 License: AGPL
11 Author: Vanaryon
12 Last revision: 27/05/11
13
14 */
15
16 // Someone is trying to hack us?
17 if(!defined('JAPPIX_BASE'))
18         exit;
19
20 ?>
21 <!DOCTYPE html>
22 <?php htmlTag($locale); ?>
23
24 <head>
25         <meta http-equiv="content-type" content="text/html; charset=utf-8" />
26         <title><?php echo htmlspecialchars(SERVICE_NAME); ?> &bull; <?php _e("User uploads server"); ?></title>
27         <link rel="shortcut icon" href="./favicon.ico" />
28 </head>
29
30 <body>
31         <h1><?php echo htmlspecialchars(SERVICE_NAME); ?> - <?php _e("User uploads server"); ?></h1>
32         <p><?php printf(T_("This is the user uploads server for %1s, ā€œ%2sā€."), htmlspecialchars(SERVICE_NAME), htmlspecialchars(SERVICE_DESC)); ?></p>
33         <?php if(showManagerLink()) { ?>
34         <p><a href="./?m=manager<?php echo keepGet('m', false); ?>"><?php _e("Manager"); ?></a></p>
35         <?php } ?>
36 </body>
37
38 </html>
39
40 <!-- Jappix Upload <?php echo $version; ?> - An open social platform -->