|
Hello yep I see the issue here in admin-cats.php
$querya="SELECT user FROM {$Globals['pp_db_prefix']}photos where userid=$uid ORDER BY date DESC LIMIT 1";
$userq = ppmysql_query($querya, $link);
list( $username ) = mysql_fetch_row($userq);
ppmysql_free_result($userq);
This above you need to replace with this
list( $userid, $username, $email ) = get_userinfo("", $uid);
The current code is only coded to be used with a standalone install
|