Skip to content

Commit

Permalink
add suggested fix on issue #25
Browse files Browse the repository at this point in the history
  • Loading branch information
stevewithington committed Apr 17, 2014
1 parent d944068 commit 5e35b73
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Application.cfc
Expand Up @@ -187,6 +187,10 @@ component persistent="false" accessors="true" output="false" extends="includes.f
return super.buildURL(argumentCollection=arguments);
}

public any function isFrameworkInitialized() {
return super.isFrameworkInitialized() && StructKeyExists(application[variables.framework.applicationKey], 'cache');
}


// ========================== Errors & Missing Views ==============================

Expand Down
2 changes: 1 addition & 1 deletion includes/fw1config.cfm
Expand Up @@ -18,7 +18,7 @@ http://www.apache.org/licenses/LICENSE-2.0
// !important: enter the plugin packageName here. must be the same as found in '{context}/plugin/config.xml.cfm'
variables.framework.package = 'MuraFW1';
variables.framework.packageVersion = '3.1.2';
variables.framework.packageVersion = '3.1.3';
// If true, then additional information is returned by the Application.onError() method
// and FW1 will 'reloadApplicationOnEveryRequest' (unless explicitly set otherwise below).
Expand Down

0 comments on commit 5e35b73

Please sign in to comment.