Allow snapshot downloading
This commit is contained in:
parent
7127a944a1
commit
8ddec91870
|
@ -18,7 +18,7 @@
|
|||
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
//
|
||||
|
||||
if ( !canView('Events') ) {
|
||||
if (!(canView('Events') or canView('Snapshots'))) {
|
||||
$view = 'error';
|
||||
return;
|
||||
}
|
||||
|
@ -57,7 +57,7 @@ $filename = isset($_REQUEST['file'])?$_REQUEST['file']:"zmExport_$connkey.$file_
|
|||
$filename = str_replace('/', '', $filename); # protect system files. must be a filename, not a path
|
||||
|
||||
$filename_path = ZM_DIR_EXPORTS.'/'.$filename;
|
||||
ZM\Debug("downloading archive from $filename_path");
|
||||
ZM\Debug('downloading archive from '.$filename_path);
|
||||
if ( is_readable($filename_path) ) {
|
||||
while (ob_get_level()) {
|
||||
ob_end_clean();
|
||||
|
|
Loading…
Reference in New Issue