X-Git-Url: http://p2p-next.cs.pub.ro/gitweb/?a=blobdiff_plain;f=application%2Fconfig%2Fconfig.php;h=755fc91fd9cc29cd0144c486a6650f067f1dca70;hb=3177ec9aa46ca4feeb9eda48d9b6bce66a722f42;hp=14029537dec6ad4f80f676d5c035d715233b6340;hpb=2a39f01ff5007ff5dfabb9153559d7639c8c5ded;p=living-lab-site.git diff --git a/application/config/config.php b/application/config/config.php index 1402953..755fc91 100644 --- a/application/config/config.php +++ b/application/config/config.php @@ -126,7 +126,7 @@ $config['subclass_prefix'] = 'MY_'; | DO NOT CHANGE THIS UNLESS YOU FULLY UNDERSTAND THE REPERCUSSIONS!! | */ -$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-'; +$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-+'; /* @@ -358,3 +358,30 @@ $config['rewrite_short_tags'] = FALSE; $config['proxy_ips'] = ''; +/* +| ------------------------------------------------------------------- +| Native Autoload - by Phil Sturgeon. +| ------------------------------------------------------------------- +| +| Nothing to do with config/autoload.php, this allows PHP autoload to work +| for base controllers and some third-party libraries. +| +| If using HMVC you do not need this! HMVC will autoload. +| +| Place this code at the bottom of your application/config/config.php file. +*/ +function __autoload($class) +{ + if (strpos($class, 'CI_') !== 0) + { + if (file_exists($file = APPPATH . 'core/' . $class . EXT)) + { + include $file; + } + elseif (file_exists($file = APPPATH . 'libraries/' . $class . EXT)) + { + include $file; + } + } +} +