PHP File Manager
Editing File: MY_Input.php
<?php /* * Copyright (C) Wayne Purton-Smith - All Rights Reserved * Unauthorized copying of this file or removing this paragraph, via any medium is strictly prohibited * Proprietary and confidential * Written by Wayne Purton-Smith <waynepurtonsmith@hotmail.co.uk> February 2014 */ class MY_Input extends CI_Input { public function access_get($key = '', $default = NULL) { return access_array($this->get(), $key, $default); } public function access_post($key = '', $default = NULL) { return access_array($this->post(), $key, $default); } }
Cancel