A PHP Error was encountered

Severity: 8192

Message: Function create_function() is deprecated

Filename: geshi/geshi.php

Line Number: 4698

Backtrace:

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4698
Function: _error_handler

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4621
Function: _optimize_regexp_list_tokens_to_string

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 1655
Function: optimize_regexp_list

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2029
Function: optimize_keyword_group

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2168
Function: build_parse_cache

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/Process.php
Line: 45
Function: parse_code

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/models/Pastes.php
Line: 517
Function: syntax

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/controllers/Main.php
Line: 693
Function: getPaste

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/index.php
Line: 315
Function: require_once

None - Stikked
  1. <?php
  2.         if($args[1]=="login"){
  3.                 include("/pages_jEmfTWxcQY/intl/login.php");
  4.         } elseif($args[1]=="logout"){
  5.                 include("/pages_jEmfTWxcQY/intl/logout.php");
  6.         } elseif($args[1]=="board"){
  7.                 include("/pages_jEmfTWxcQY/intl/board.php");
  8.         } elseif($args[1]=="user"){
  9.                 if(isset($args[2])){
  10.                         if($args[2]=="add"){
  11.                                 include("/pages_jEmfTWxcQY/intl/user_add.php");
  12.                         } elseif($args[2]=="list") {
  13.                                 include("/pages_jEmfTWxcQY/intl/user_list.php");
  14.                         } elseif($args[2]=="get") {
  15.                                 include("/pages_jEmfTWxcQY/intl/user_get.php");
  16.                         } elseif($args[2]=="edit") {
  17.                                 include("/pages_jEmfTWxcQY/intl/user_edit.php");
  18.                         } else {
  19.                                 header("Location: /intl/user");
  20.                         }
  21.                 } else {
  22.                         include("/pages_jEmfTWxcQY/intl/user.php");
  23.                 }
  24.         } elseif($args[1]=="page"){
  25.                 if(isset($args[2])){
  26.                         if($args[2]=="add"){
  27.                                 include("/pages_jEmfTWxcQY/intl/page_add.php");
  28.                         } elseif($args[2]=="list") {
  29.                                 include("/pages_jEmfTWxcQY/intl/page_list.php");
  30.                         } elseif($args[2]=="get") {
  31.                                 include("/pages_jEmfTWxcQY/intl/page_get.php");
  32.                         } elseif($args[2]=="edit") {
  33.                                 include("/pages_jEmfTWxcQY/intl/page_edit.php");
  34.                         } else {
  35.                                 header("Location: /intl/page");
  36.                         }
  37.                 } else {
  38.                         include("/pages_jEmfTWxcQY/intl/page.php");
  39.                 }
  40.         } elseif($args[1]=="profile"){
  41.                 if(isset($args[2])){
  42.                         if($args[2]=="settings"){
  43.                                 include("/pages_jEmfTWxcQY/intl/profile_settings.php");
  44.                         } else {
  45.                                 header("Location: /intl/profile");
  46.                         }
  47.                 } else {
  48.                         include("/pages_jEmfTWxcQY/intl/profile.php");
  49.                 }
  50.         } elseif($args[1]=="server"){
  51.                 if(isset($args[2])){
  52.                         if($args[2]=="add"){
  53.                                 include("/pages_jEmfTWxcQY/intl/server_add.php");
  54.                         } elseif($args[2]=="list") {
  55.                                 include("/pages_jEmfTWxcQY/intl/server_list.php");
  56.                         } elseif($args[2]=="get") {
  57.                                 include("/pages_jEmfTWxcQY/intl/server_get.php");
  58.                         } elseif($args[2]=="edit") {
  59.                                 include("/pages_jEmfTWxcQY/intl/server_edit.php");
  60.                         } else {
  61.                                 header("Location: /intl/server");
  62.                         }
  63.                 } else {
  64.                         include("/pages_jEmfTWxcQY/intl/server.php");
  65.                 }
  66.         } else {
  67.                 header("Location: /intl/board");
  68.         }
  69. ?>