]> git.llucax.com Git - personal/website.old.git/blob - includes/prepend.php
Se corrige el umask.
[personal/website.old.git] / includes / prepend.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +--------------------------------------------------------------------+
4 // |                       Luca's Website (L'SWS)                       |
5 // +--------------------------------------------------------------------+
6 // | This file is part of L'SWS.                                        |
7 // |                                                                    |
8 // | L'SWS is free software; you can redistribute it and/or modify it   |
9 // | under the terms of the GNU General Public License as published by  |
10 // | the Free Software Foundation; either version 2 of the License, or  |
11 // | (at your option) any later version.                                |
12 // |                                                                    |
13 // | L'SWS is distributed in the hope that it will be useful, but       |
14 // | WITHOUT ANY WARRANTY; without even the implied warranty of         |
15 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU   |
16 // | General Public License for more details.                           |
17 // |                                                                    |
18 // | You should have received a copy of the GNU General Public License  |
19 // | along with Hooks; if not, write to the Free Software Foundation,   |
20 // | Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA      |
21 // +--------------------------------------------------------------------+
22 // | Created: vie ene 31 00:53:15 ART 2003                              |
23 // | Authors: Leandro Lucarella <luca@lugmen.org.ar>                    |
24 // +--------------------------------------------------------------------+
25 //
26 // $Id$
27 //
28
29 // Configuración local:
30 putenv('LC_ALL=es_AR');
31 setlocale(LC_ALL, 'es_AR');
32 umask(0007);
33
34 require_once 'Hook.php';
35
36 //Debug:
37 ini_set('display_errors', true);
38 error_reporting(E_ALL);
39
40 // Hook de configuración.
41 global $CONFIG;
42 Hook::config('config');
43
44 // Hook prepend.
45 Hook::hook('prepend');
46
47 // Cabecera de la página web.
48 Hook::hook('cabecera');
49
50 // $Id$
51 ?>