root/devel/mod/export/blogashtml.php

Revision 1539, 374 bytes (checked in by renato, 10 months ago)

Setting prop svn:eol-style in LOTS of files.

  • Property svn:eol-style set to native
Line 
1 <?php
2
3     /**
4      * Elgg blog export
5      * @author Ben Werdmuller <ben@curverider.co.uk>
6      */
7
8         require_once("../../includes.php");
9
10         if (isloggedin()) {
11         
12             header('Content-Disposition: attachment');
13             header("Content-type: text/html");
14             echo export_blog_as_html($_SESSION['userid']);
15         
16         }
17         
18 ?>
Note: See TracBrowser for help on using the browser.