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

Untitled - Stikked
  1.     base64$decode = function (s) {
  2.         s = s.replace(prepRegex, '');
  3.  
  4.         var l = s.length,
  5.             triplet;
  6.  
  7.         if (l % 4 != 0 || !checkRegex.test(s))
  8.             throw new Error('bad base64: ' + s);
  9.  
  10.         var aLength = (l / 4) * 3 - (s[l - 1] == '=' ? 1 : 0) - (s[l - 2] == '=' ? 1 : 0),
  11.             a = new Uint8Array(aLength),
  12.             si = 0,
  13.             ai = 0;
  14.  
  15.         while (si < l) {
  16.             triplet =
  17.                 charNumber1[s[si++]] +
  18.                 charNumber2[s[si++]] +
  19.                 charNumber3[s[si++]] +
  20.                 charNumber4[s[si++]];
  21.  
  22.             a[ai++] = (triplet >>> 16);
  23.             if (ai < aLength) {
  24.                 a[ai++] = (triplet >>> 8) & 0xFF;
  25.                 if (ai < aLength) {
  26.                     a[ai++] = (triplet) & 0xFF;
  27.                 }
  28.             }
  29.         }
  30.  
  31.         return a;
  32.     };