Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. Index: core/modules/image/src/Entity/ImageStyle.php
  2. IDEA additional info:
  3. Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
  4. <+>UTF-8
  5. ===================================================================
  6. --- core/modules/image/src/Entity/ImageStyle.php
  7. +++ core/modules/image/src/Entity/ImageStyle.php
  8. @@ -183,6 +183,11 @@
  9. $path = $uri;
  10. $source_scheme = $scheme = $default_scheme;
  11. }
  12. + // Patch to enable styles from the textimage module to be stored in
  13. + // the public file directory.
  14. + if ($scheme == 'private' && ($this->id() == 'text')) {
  15. + $scheme = 'public';
  16. + }
  17. return "$scheme://styles/{$this->id()}/$source_scheme/{$this->addExtension($path)}";
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement