Blame view

sources/core/templates/altmail.php 455 Bytes
31b7f2792   Kload   Upgrade to ownclo...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  <?php
  print_unescaped($l->t("Hey there,
  
  just letting you know that %s shared %s with you.
  View it: %s
  
  ", array($_['user_displayname'], $_['filename'], $_['link'])));
  if ( isset($_['expiration']) ) {
  	print_unescaped($l->t("The share will expire on %s.", array($_['expiration'])));
  	print_unescaped('
  
  ');
  }
  p($l->t("Cheers!"));
  ?>
  
  --
  <?php p($theme->getName() . ' - ' . $theme->getSlogan()); ?>
  <?php print_unescaped("
  ".$theme->getBaseUrl());