Commit: a59c37a3e16211cdee8cd2f23e13d0b254bc507d Author: Hannes Magnusson <[email protected]> Wed, 11 Dec 2013 15:48:01 -0800 Parents: 28608d199f3935a6b6c22281e1366fd5c0334774 Branches: master
Link: http://git.php.net/?p=web/people.git;a=commitdiff;h=a59c37a3e16211cdee8cd2f23e13d0b254bc507d Log: APC is no longer available.. comment this out until someone reworks this Changed paths: M user.php Diff: diff --git a/user.php b/user.php index eec6b7a..0a843e1 100644 --- a/user.php +++ b/user.php @@ -11,7 +11,8 @@ site_header("PHP: Developers Profile Pages; $USERNAME"); $NFO = findPHPUser($USERNAME); $PEAR = findPEARUser($USERNAME); $GITHUB = findGitHubUser($NFO["name"]); -$KARMA = findKarma($USERNAME); +/* This stuff uses apc.. which is no longer available */ +$KARMA = array();//findKarma($USERNAME); $PROFILE = findPHPUserProfile($USERNAME); $email = $NFO["enable"] ? $NFO["username"].'@php.net' : ""; $location = isset($PEAR["long"], $PEAR["lat"]) ? $PEAR["lat"] . ", " . $PEAR["long"] : null; -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
