Summary:
render function always use /tmp/cache for output JS or CSS
Detailed Description:
render function always use /tmp/cache for output JS or CSS
CGExtensions/lib/jsloader/class.jsloader.php
function "render" does not refer to config.php for JS and CSS output directories
and always refer to '/tmp/cache/'
and it does not interract with http or https request.
L812
if( $do_js_tag ) {
$cache_url = $config['root_url'].'/tmp/cache/'.basename($cache_js);
.....
if( $do_css_tag ) {
$cache_url = $config['root_url'].'/tmp/cache/'.basename($cache_css);
maybe in lib/classes/class.config.php
it could be usefull to have these functions :
smart_public_cache_url()
smart_css_url()
smart_assets_url()