submitting to CS because of being asked nicely
git-svn-id: https://svn.php.net/repository/pear/packages/Spreadsheet_Excel_Writer/trunk@200859 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
a695bee4ef
commit
8ce1886a08
|
|
@ -2039,8 +2039,7 @@ class Spreadsheet_Excel_Writer_Worksheet extends Spreadsheet_Excel_Writer_BIFFwr
|
||||||
// Split the dir name and sheet name (if it exists)
|
// Split the dir name and sheet name (if it exists)
|
||||||
/*if (preg_match("/\#/", $url)) {
|
/*if (preg_match("/\#/", $url)) {
|
||||||
list($dir_long, $sheet) = split("\#", $url);
|
list($dir_long, $sheet) = split("\#", $url);
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
$dir_long = $url;
|
$dir_long = $url;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -2049,8 +2048,7 @@ class Spreadsheet_Excel_Writer_Worksheet extends Spreadsheet_Excel_Writer_BIFFwr
|
||||||
$sheet_len = pack("V", strlen($sheet) + 0x01);
|
$sheet_len = pack("V", strlen($sheet) + 0x01);
|
||||||
$sheet = join("\0", split('', $sheet));
|
$sheet = join("\0", split('', $sheet));
|
||||||
$sheet .= "\0\0\0";
|
$sheet .= "\0\0\0";
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
$sheet_len = '';
|
$sheet_len = '';
|
||||||
$sheet = '';
|
$sheet = '';
|
||||||
}*/
|
}*/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue