~ubuntu-branches/ubuntu/lucid/mahara/lucid-security

« back to all changes in this revision

Viewing changes to htdocs/view/columns.php

  • Committer: Bazaar Package Importer
  • Author(s): Francois Marier
  • Date: 2009-11-27 22:09:03 UTC
  • mfrom: (6.3.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091127220903-aiigd3tr46z0rmcg
Tags: 1.2.0-2
Fix postrm script so that Mahara can be uninstalled

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?php
2
2
/**
3
3
 * Mahara: Electronic portfolio, weblog, resume builder and social networking
4
 
 * Copyright (C) 2006-2008 Catalyst IT Ltd (http://www.catalyst.net.nz)
 
4
 * Copyright (C) 2006-2009 Catalyst IT Ltd and others; see:
 
5
 *                         http://wiki.mahara.org/Contributors
5
6
 *
6
7
 * This program is free software: you can redistribute it and/or modify
7
8
 * it under the terms of the GNU General Public License as published by
20
21
 * @subpackage core
21
22
 * @author     Catalyst IT Ltd
22
23
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL
23
 
 * @copyright  (C) 2006-2008 Catalyst IT Ltd http://catalyst.net.nz
 
24
 * @copyright  (C) 2006-2009 Catalyst IT Ltd http://catalyst.net.nz
24
25
 *
25
26
 */
26
27
 
65
66
    )
66
67
));
67
68
 
68
 
$smarty = smarty();
69
 
$smarty->assign('heading', TITLE);
 
69
$smarty = smarty(array(), array(), array(), array('sidebars' => false));
 
70
$smarty->assign('PAGEHEADING', hsc(TITLE));
70
71
$smarty->assign('form', $columnsform);
71
72
$smarty->display('view/columns.tpl');
72
73