From GCT Software:
Deprecated function fetch_file_paths() called in system/user/addons/editor/ft.editor.php on line 504.
Deprecated since 3.0. Use File_upload_preferences_model::get_paths() instead.
This continues to pop up. Is there a fix for this? The developer is not in communication at this time.
This is a developer deprecation that indicates that a new method should be used instead of an old one. In this case, code that was using:
$file_paths = ee()->function->fetch_file_paths()
Should instead be using:
ee()->load->model('file_upload_preferences_model');
$file_paths = ee()->file_upload_preferences_model->get_paths();
Packet Tide owns and develops ExpressionEngine. © Packet Tide, All Rights Reserved.