Documentation fix: (PowerKiKi) GH-224 - Minor fix in DocBlock
This commit is contained in:
parent
4eefabf7a0
commit
f3755a0965
|
@ -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'];
|
||||
|
|
|
@ -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>';
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue