[eluser]wiredesignz[/eluser]
I have checked out the files you sent. I was able to get the library to load a view.
Code:
class Testlib
{
function load_view($view)
{
$CI =& controller::instance();
$CI->load->view($view);
}
}
However, application libraries need to be loaded before any other controllers are loaded because CI will load the library to the last controller instantiated.
Also, while view sub-directories are supported in ME, cross loading from other module view sub-directories is probably not.
Try: $this->load->view('util/views/unused_tags/list');