Example #1
0
 /**
  * makes sure the requested page will be delivered with the correct protocol (http|https)
  * 
  * @access public
  * @static
  * @deprecated will be removed in future versions. use instead: \MVC\Request::ENSURECORRECTPROTOCOL();
  * @return void
  */
 public static function ENSURECORRECTPROTOCOL()
 {
     $aDebug = self::PREPAREBACKTRACEARRAY(debug_backtrace());
     Log::WRITE("DEPRECATED: " . __METHOD__ . "\tReplaced by:\t" . '\\MVC\\Request::ENSURECORRECTPROTOCOL(); --> called in: ' . $aDebug['sFile'] . ', ' . $aDebug['sLine'], 'notice.log');
     // Replaced by:
     Request::ENSURECORRECTPROTOCOL();
 }