Documentation fix: (PowerKiKi) GH-224 - Minor fix in DocBlock

This commit is contained in:
Mark Baker 2013-11-17 19:43:47 +00:00
parent 4eefabf7a0
commit f3755a0965
2 changed files with 5 additions and 2 deletions

View File

@ -270,7 +270,7 @@ class PHPExcel_Calculation_Functions {
*
* @access public
* @category Error Returns
* @return string #REF!
* @return string #NULL!
*/
public static function NULL() {
return self::$_errorCodes['null'];

View File

@ -608,7 +608,10 @@ class PHPExcel_Writer_HTML extends PHPExcel_Writer_Abstract implements PHPExcel_
}
$html .= '<div style="position: relative;">';
$html .= '<img style="position: absolute; z-index: 1; left: ' . $drawing->getOffsetX() . 'px; top: ' . $drawing->getOffsetY() . 'px; width: ' . $drawing->getWidth() . 'px; height: ' . $drawing->getHeight() . 'px;" src="' . $imageData . '" border="0" />' . PHP_EOL;
$html .= '<img style="position: absolute; z-index: 1; left: ' .
$drawing->getOffsetX() . 'px; top: ' . $drawing->getOffsetY() . 'px; width: ' .
$drawing->getWidth() . 'px; height: ' . $drawing->getHeight() . 'px;" src="' .
$imageData . '" border="0" />';
$html .= '</div>';
}
}