mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-10 09:35:24 +02:00
This is what I get for fixing CS issues...
git-svn-id: file:///svn/phpbb/trunk@5572 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
2d8700239f
commit
19d5dddaeb
@ -200,14 +200,14 @@ function view_folder($id, $mode, $folder_id, $folder, $type)
|
|||||||
}
|
}
|
||||||
|
|
||||||
$type = request_var('export_option', '');
|
$type = request_var('export_option', '');
|
||||||
$enclosure = request_var('enclosure', '"');
|
$enclosure = request_var('enclosure', '');
|
||||||
$delimiter = request_var('delimiter', ',');
|
$delimiter = request_var('delimiter', '');
|
||||||
$submit_export = (isset($_POST['submit_export'])) ? true : false;
|
$submit_export = (isset($_POST['submit_export'])) ? true : false;
|
||||||
|
|
||||||
// Ask the user what he wants
|
// Ask the user what he wants
|
||||||
if ($submit_export)
|
if ($submit_export)
|
||||||
{
|
{
|
||||||
if ($delimiter && $type == 'CSV')
|
if ($delimiter === '' && $type == 'CSV')
|
||||||
{
|
{
|
||||||
$template->assign_var('PROMPT', true);
|
$template->assign_var('PROMPT', true);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user