View file application/modules/Core/views/scripts/help/privacy.tpl

File size: 634B
<?php
/**
 * SocialEngine
 *
 * @category   Application_Core
 * @package    Core
 * @copyright  Copyright 2006-2020 Webligo Developments
 * @license    http://www.socialengine.com/license/
 * @version    $Id: privacy.tpl 9747 2012-07-26 02:08:08Z john $
 * @author     Alex
 */
?>
<div class="rich_content_body">
  <h2><?php echo $this->translate('Privacy Statement') ?></h2>
  <p>
    <?php
    $str = $this->translate('_CORE_PRIVACY_STATEMENT');
    if ($str == strip_tags($str)) {
      // there is no HTML tags in the text
      echo nl2br($str);
    } else {
      echo $str;
    }
    ?>
  </p>
</div>