Bug #36848
PDF meta information does not extract author (with fix)
| Status: | Resolved | Start date: | 2012-05-04 | |
|---|---|---|---|---|
| Priority: | Should have | Due date: | ||
| Assignee: | Lorenz Ulrich | % Done: | 100% |
|
| Category: | - | |||
| Target version: | 1.0.0 - initial release | |||
| Votes: | 0 |
Description
sv_metaextract extracts title, keywords, description, creation date, and change date from PDF files correctly, including umlaut characters. The author information, however, is ignored.
This can be fixed by extending class.tx_svmetaextract_sv5.php. In the switch statement add in line 74:
case 'Author':
$this->out['fields']['creator'] = tx_svmetaextract_lib::forceUtf8($value);
Associated revisions
[BUGFIX] PDF meta information does not extract author
Add author field to the fields read out from a PDF.
Change-Id: I3fe1ab4e44ed9c5e03fd47bf84e5379fad7716b3
Resolves: #36848
Releases: 1.0
History
Updated by Gerrit Code Review about 1 year ago
Patch set 1 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/11036
Updated by Lorenz Ulrich about 1 year ago
- Status changed from New to Resolved
- % Done changed from 0 to 100
Applied in changeset 201a91a258897fdd28754cee3622b18ed6097567.
Updated by Lorenz Ulrich about 1 year ago
- Assignee set to Lorenz Ulrich
- Target version set to 1.0.0 - initial release
Thanks for reporting.