Zeile 270 | Zeile 270 |
---|
$table = new Table; // Check if file is writable, before allowing submission
|
$table = new Table; // Check if file is writable, before allowing submission
|
$no_write = 0;
| $no_write = null;
|
foreach($quick_phrases as $file => $phrases) {
| foreach($quick_phrases as $file => $phrases) {
|
Zeile 359 | Zeile 359 |
---|
{ $editwithfile = $editwithfolder.$file; }
|
{ $editwithfile = $editwithfolder.$file; }
|
if(!file_exists($editfile) || ($editwithfile && !file_exists($editwithfile)))
| if(!file_exists($editfile) || ($editwithfile && !file_exists($editwithfile)) || $file == '.' || $file == '..')
|
{ flash_message($lang->error_invalid_file, 'error'); admin_redirect("index.php?module=config-languages");
| { flash_message($lang->error_invalid_file, 'error'); admin_redirect("index.php?module=config-languages");
|
Zeile 451 | Zeile 451 |
---|
}
// Check if file is writable, before allowing submission
|
}
// Check if file is writable, before allowing submission
|
$no_write = 0;
| $no_write = null;
|
if(!is_writable($editfile)) { $no_write = 1;
| if(!is_writable($editfile)) { $no_write = 1;
|