Index: trunk/phase3/includes/HttpFunctions.php |
— | — | @@ -495,7 +495,7 @@ |
496 | 496 | # $_SERVER['REQUEST_URI'] gives a less reliable indication of the |
497 | 497 | # referring page. |
498 | 498 | if ( is_object( $wgTitle ) ) { |
499 | | - $this->set_referer( $wgTitle->getFullURL() ); |
| 499 | + $this->setReferrer( $wgTitle->getFullURL() ); |
500 | 500 | } |
501 | 501 | |
502 | 502 | $this->setupOutputHandler(); |
— | — | @@ -528,6 +528,9 @@ |
529 | 529 | $this->setCallback( array( $this, 'readOnly' ) ); |
530 | 530 | } |
531 | 531 | } |
| 532 | + |
| 533 | + public function setReferrer( $url ) { } |
| 534 | + |
532 | 535 | } |
533 | 536 | |
534 | 537 | /** |