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: 551
Function: getPaste

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

A PHP Error was encountered

Severity: Warning

Message: Cannot modify header information - headers already sent by (output started at /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/system/core/Exceptions.php:271)

Filename: view/raw.php

Line Number: 2

Backtrace:

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/themes/geocities/views/view/raw.php
Line: 2
Function: header

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/core/MY_Loader.php
Line: 173
Function: include

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/core/MY_Loader.php
Line: 43
Function: _ci_load

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

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

jQuery(document).ready(function() { function prepareNavigation() { jQuery('.menuMain .l1 a').click(function () { // catch clicks outside of the navigation to collaps the flyout navigation jQuery(document).click(function() { jQuery('.menuMain .l1 ul').hide(); jQuery('.menuMain .open').removeClass('open'); jQuery('.menuMain .current').removeClass('current'); }); // hide the visible navigation jQuery('.menuMain .l1 ul').hide(); // remove the hightlighting of a single level-1 entry on each // click so that the new level-1 element is the only one hightlighted jQuery('.menuMain .current').removeClass('current'); jQuery(this).parent().children('a').addClass('current'); // now show the level-2 incl. all sub-levels jQuery(this).parent().find('ul').show(); jQuery(this).parent().find('.l2 ul').show(); // mark the whole navigation as open by adding a class jQuery(this).parent().parent().addClass('open'); // prevent the real click to be executed if we are on level-1 if (jQuery(this).parent().hasClass('l1')) { return false; } else { return true; } }); } if(jQuery('#menuMain ul').children().length == 0) { jQuery('#menuMain').load('http://namics987.nezzoalpha.ch/ #menuMain>ul', prepareNavigation); } else { prepareNavigation(); } if(jQuery('#menuFooter ul').children().length == 0) { jQuery('#menuFooter').load('http://namics987.nezzoalpha.ch/ #menuFooter>ul'); } // replace the first entry of the meta navigation with pure text (unlink it) since it would // lead to the first sub-page and not to the page mentioned as link text in every case jQuery('.statusRow a:first').replaceWith(function() { return jQuery(this).contents(); }); });