Last active
December 16, 2015 19:49
-
-
Save frace/5487774 to your computer and use it in GitHub Desktop.
Since DAM in TYPO3 does not allow batch processing of meta data for non-default languages we HAVE to do it on our own
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| UPDATE `tx_dam` | |
| SET | |
| `title`='title', | |
| `loc_country`='country', | |
| `loc_city`='city', | |
| `description`='description', | |
| `alt_text`='alt_text', | |
| `caption`='caption', | |
| `abstract`='abstract' | |
| WHERE `sys_language_uid`=1 (AND `file_mime_type`='image') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment