User talk:Auric goldfinger

From LinuxReviews
Jump to navigationJump to search

gold[edit]

finger is back!

--auric goldfinger 13:41, 25 September 2019 (UTC)


In MediaWiki's includes/user/User.php we've changed to this so people's IPs are not revealed:

        public function getName() {
                if ( $this->isItemLoaded( 'name', 'only' ) ) {
                        // Special case optimisation
                        return $this->mName;
                } else {
                        $this->load();
                        if ( $this->mName === false ) {
                                // Clean up IPs
                                // begin xiando mod
                                // $this->mName = IP::sanitizeIP( $this->getRequest()->getIP() );
                                // $this->mName = 'Honoratus Halling';
                                $dw = date( "w" );
                                switch ($dw) {
                                        case 0:
                                                $fakename = 'ernst stavro blofeld';
                                                break;
                                        case 1:
                                                $fakename = 'general orlov';
                                                break;
                                        case 2:
                                                $fakename = 'rosa klebb';
                                                break;
                                        case 3:
                                                $fakename = 'auric goldfinger';
                                                break;
                                        case 4:
                                                $fakename = 'francisco scaramanga';
                                                break;
                                        case 5:
                                                $fakename = 'dr no';
                                                break;
                                        case 6:
                                                $fakename = 'auric goldfinger';

                                                break;
                                        default:
                                                $fakename = 'general orlov';
                                                break;
                                }
                                // end xiando mod
                                //$this->mName = IP::sanitizeIP( $this->getRequest()->getIP() );
                                $this->mName = IP::sanitizeIP( "$fakename" );
                        }
                        return $this->mName;
                }
        }

Thus; Auric Goldfinger is typically editing pages and doing stuff on Wednesdays. Somewhat related, Auric Goldfinger is using a desktop computer,

--Chaekyung (talk) 04:34, 26 September 2019 (UTC)