14 lines
293 B
Plaintext
14 lines
293 B
Plaintext
<?php
|
|
// profile.php
|
|
|
|
// Attempting to load profile data...
|
|
$user = getUserData();
|
|
if (!$user) {
|
|
throw new Exception("Profile not found.");
|
|
}
|
|
|
|
// :( Oops... Looks like profile.php forgot to profile itself.
|
|
|
|
// Maybe it went out to find itself.
|
|
// Or maybe it was never real to begin with.
|