[eluser]A_funs[/eluser]
I am autoloading a custom helper into my application, the file is loaded without issue but if I define any function in it the application will hang and not load.
Code:
<?php
function preparecomment($comment){
return 'comment';
};
If I leave it blank, like this ; the app will load without issue:
really don't know what could be causing this issue