patch #1253465, avoid error messages for unset variables in PHP functions that require a parameter passed by reference
This commit is contained in:
@@ -67,7 +67,7 @@ function PMA_transformation_text_plain__external($buffer, $options = array(), $m
|
||||
0 => array("pipe", "r"),
|
||||
1 => array("pipe", "w")
|
||||
);
|
||||
$process = proc_open($program . ' ' . $poptions, $descriptorspec, $pipes);
|
||||
$process = proc_open($program . ' ' . $poptions, $descriptorspec, $pipes = array());
|
||||
if (is_resource($process)) {
|
||||
fwrite($pipes[0], $buffer);
|
||||
fclose($pipes[0]);
|
||||
|
Reference in New Issue
Block a user