Changeset 25932 for extensions/BatchDownloader/admin.php
- Timestamp:
- Dec 12, 2013, 2:41:53 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/BatchDownloader/admin.php
r17880 r25932 8 8 include_once(PHPWG_ROOT_PATH.'admin/include/tabsheet.class.php'); 9 9 $page['tab'] = (isset($_GET['tab'])) ? $_GET['tab'] : 'sets'; 10 10 11 11 $tabsheet = new tabsheet(); 12 12 $tabsheet->add('sets', l10n('Download history'), BATCH_DOWNLOAD_ADMIN . '-sets'); … … 17 17 if (!class_exists('ZipArchive')) 18 18 { 19 array_push($page['warnings'], l10n('Unable to find ZipArchive PHP extension, Batch Downloader will use PclZip instead, but with degraded performance.'));19 $page['warnings'][] = l10n('Unable to find ZipArchive PHP extension, Batch Downloader will use PclZip instead, but with degraded performance.'); 20 20 } 21 21 … … 28 28 'BATCH_DOWNLOAD_ADMIN' => BATCH_DOWNLOAD_ADMIN, 29 29 )); 30 30 31 31 $template->assign_var_from_handle('ADMIN_CONTENT', 'batch_download'); 32 33 ?>
Note: See TracChangeset
for help on using the changeset viewer.