mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-23 12:42:21 +00:00
9e6f75ccbd
PHP 7 doesn't like the old short tags we were using (it's possible to re-enable them, but won't be for version 8, so we might as well switch now), and the old MySQL APIs are now gone entirely, replaced with something different. This should make everything work at least as well as it used to. Also, one file used to be checked in with CRLF line endings. ??
18 lines
535 B
PHP
18 lines
535 B
PHP
<?php // Preamble
|
|
$pageName = "Member Central";
|
|
$need = 'auth';
|
|
$modules = 'member_stuff';
|
|
|
|
require "parts/preamble.php"; // Load most of document
|
|
?>
|
|
<H2>Welcome to Developer Central, <?=$userInfo['u_displayname']?>!</H2>
|
|
<P>
|
|
This is the area for developers to post news/plan entries, edit your user
|
|
information, check on the server(s), and so on. Members with Admin-level
|
|
access can modify news/plan entries here as well.
|
|
</P>
|
|
|
|
<P>
|
|
See information on the PHP implementation on the server
|
|
<A href="phpinfo.php">here</A>.
|
|
</P>
|