diff options
Diffstat (limited to 'views/js/pageshells')
-rw-r--r-- | views/js/pageshells/pageshell.php | 38 |
1 files changed, 15 insertions, 23 deletions
diff --git a/views/js/pageshells/pageshell.php b/views/js/pageshells/pageshell.php index 982bbcb86..a8d3ad2cb 100644 --- a/views/js/pageshells/pageshell.php +++ b/views/js/pageshells/pageshell.php @@ -1,27 +1,19 @@ <?php +/** + * Elgg JS pageshell + * + * @package Elgg + * @subpackage Core + * @author Curverider Ltd + * @link http://elgg.org/ + */ - /** - * Elgg JS pageshell - * - * @package Elgg - * @subpackage Core +$body = $vars['body']; - * @author Curverider Ltd +// Remove excess carriage returns +$body = str_replace("\r",'',$body); +$body = explode("\n",$body); - * @link http://elgg.org/ - */ - - $body = $vars['body']; - - // Remove excess carriage returns - $body = str_replace("\r",'',$body); - - $body = explode("\n",$body); - - foreach($body as $line) { - - echo "document.write('" . addslashes($line) . "');\n"; - - } - -?>
\ No newline at end of file +foreach($body as $line) { + echo "document.write('" . addslashes($line) . "');\n"; +}
\ No newline at end of file |