Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. {% if craft.config.devMode and (craft.session.hasFlash('notice') or craft.session.hasFlash('error')) %}
  2.  
  3. {% set noticeFlash = craft.session.getFlash('notice')|join('|') %}
  4. {% set errorFlash = craft.session.getFlash('error')|join('|') %}
  5.  
  6. Notice: [{{ noticeFlash }}]
  7. Error: [{{ errorFlash }}]
  8.  
  9. {% endif %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement