30
1
mirror of https://github.com/vdm-io/tcpdf.git synced 2024-05-31 21:30:47 +00:00

5.9.209 (2013-03-15)

- Image method was improved.
This commit is contained in:
Nicola Asuni 2013-03-16 00:18:29 +00:00
parent facbc7b253
commit a48f9f174c

View File

@ -25940,13 +25940,13 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value:
/**
* Returns a temporary filename for caching object on filesystem.
* @param $name (string) prefix to add to filename
* @param $name (string) Prefix to add to the file name.
* @return string filename.
* @since 4.5.000 (2008-12-31)
* @protected
*/
protected function getObjFilename($name) {
return tempnam(K_PATH_CACHE, $name.'_'.$this->file_id.'_');
return tempnam(K_PATH_CACHE, $name.'_');
}
/**