X-Git-Url: https://git.cyclocoop.org/%28%28?a=blobdiff_plain;f=includes%2FOutputPage.php;h=bf9f5ac0b117b51496c6e8d2e34a60e94c4992cc;hb=ab442912044814c61e1803bd9b572ec0952b0166;hp=83a7d3f77ac54d1e11ffd8197e12631db7593977;hpb=5e5579d04cfac26317ff13cd85ed8453a113c10f;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/OutputPage.php b/includes/OutputPage.php index 83a7d3f77a..bf9f5ac0b1 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -2432,14 +2432,6 @@ $templates * @param $options Options array to pass to Linker */ public function addReturnTo( $title, $query = array(), $text = null, $options = array() ) { - if ( in_array( 'http', $options ) ) { - $proto = PROTO_HTTP; - } elseif ( in_array( 'https', $options ) ) { - $proto = PROTO_HTTPS; - } else { - $proto = PROTO_RELATIVE; - } - $link = $this->msg( 'returnto' )->rawParams( Linker::link( $title, $text, array(), $query, $options ) )->escaped(); $this->addHTML( "

{$link}

\n" );