|
Revision 1447, 303 bytes
(checked in by rho, 8 months ago)
|
fixed multiple issues
- walledgarden access on some pages
- empty comment on commentwall
- added community profile permission check
- corrected paths on templates edit
- blog widget display issue
Signed-off: Rolando Espinoza La fuente <rho@prosoftpeople.com>
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
global $CFG; |
|---|
| 4 |
|
|---|
| 5 |
define('context', 'external'); |
|---|
| 6 |
require_once(dirname(__FILE__)."/includes.php"); |
|---|
| 7 |
|
|---|
| 8 |
$context = isloggedin() ? 'frontpage_loggedin' : 'frontpage_loggedout'; |
|---|
| 9 |
$title = $CFG->sitename; |
|---|
| 10 |
|
|---|
| 11 |
templates_page_setup(); |
|---|
| 12 |
templates_page_output($title, null, $context); |
|---|
| 13 |
|
|---|
| 14 |
?> |
|---|