diff -r ec9385bb7243 -r ffa5decbb305 plugins/SpecialUpdownload.php --- a/plugins/SpecialUpdownload.php Mon Jul 07 18:13:01 2008 -0400 +++ b/plugins/SpecialUpdownload.php Wed Jul 09 13:18:25 2008 -0400 @@ -49,6 +49,7 @@ { global $db, $session, $paths, $template, $plugins; // Common objects global $lang; + global $cache; global $mime_types; if(getConfig('enable_uploads')!='1') { die_friendly($lang->get('etc_access_denied_short'), '

' . $lang->get('upload_err_disabled_site') . '

'); } if ( !$session->get_permissions('upload_files') ) @@ -148,6 +149,7 @@ { if(!$db->sql_query('INSERT INTO '.table_prefix.'logs(time_id,date_string,log_type,action,author,page_id,namespace,edit_summary) VALUES('.$utime.', \''.enano_date('d M Y h:i a').'\', \'page\', \'reupload\', \''.$session->username.'\', \''.$filename.'\', \''.'File'.'\', \''.$comments.'\');')) $db->_die('The page log could not be updated.'); } + $cache->purge('page_meta'); die_friendly($lang->get('upload_success_title'), '

' . $lang->get('upload_success_body', array('file_link' => makeUrlNS('File', $filename))) . '

'); } else