Option: remember_last_path

This option enables you to disable the feature that remembers the last path the user was in. This path will only be used as a default path if you for example specify a URL to the script that path will be used instead. This feature is enabled by default but can be disabled by setting the option value to false.

Example of usage in init call on page level:

mcFileManager.init({
	remember_last_path : false
});

Example of usage in mcFileManager.open call

<a href="javascript:mcFileManager.open('example1','url','','',{remember_last_path : false});">[Browse]</a>

Example of usage in a TinyMCE init call

tinyMCE.init({
	mode : "textareas",
	theme : "advanced",
	plugins : "advimage,advlink,filemanager",
	filemanager_remember_last_path : false
});