Changeset 354


Ignore:
Timestamp:
Feb 7, 2004, 8:36:44 PM (20 years ago)
Author:
gweltas
Message:

Migration of common.php in the include directory to fit the new coding rules

Location:
trunk
Files:
1 added
1 deleted
12 edited

Legend:

Unmodified
Added
Removed
  • trunk/about.php

    r351 r354  
    11<?php
    2 /***************************************************************************
    3  *                                about.php                                *
    4  *                            ------------------                           *
    5  *   application   : PhpWebGallery 1.3 <http://phpwebgallery.net>          *
    6  *   author        : Pierrick LE GALL <pierrick@z0rglub.com>               *
    7  *                                                                         *
    8  *   $Id$
    9  *                                                                         *
    10  ***************************************************************************/
    11 
    12 /***************************************************************************
    13  *                                                                         *
    14  *   This program is free software; you can redistribute it and/or modify  *
    15  *   it under the terms of the GNU General Public License as published by  *
    16  *   the Free Software Foundation;                                         *
    17  *                                                                         *
    18  ***************************************************************************/
     2// +-----------------------------------------------------------------------+
     3// |                           about.php                                |
     4// +-----------------------------------------------------------------------+
     5// | application   : PhpWebGallery <http://phpwebgallery.net>              |
     6// | branch        : 1.4                                                   |
     7// +-----------------------------------------------------------------------+
     8// | file          : $RCSfile$
     9// | last update   : $Date$
     10// | last modifier : $Author$
     11// | revision      : $Revision$
     12// +-----------------------------------------------------------------------+
     13// | This program is free software; you can redistribute it and/or modify  |
     14// | it under the terms of the GNU General Public License as published by  |
     15// | the Free Software Foundation                                          |
     16// |                                                                       |
     17// | This program is distributed in the hope that it will be useful, but   |
     18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
     19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
     20// | General Public License for more details.                              |
     21// |                                                                       |
     22// | You should have received a copy of the GNU General Public License     |
     23// | along with this program; if not, write to the Free Software           |
     24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
     25// | USA.                                                                  |
     26// +-----------------------------------------------------------------------+
    1927
    2028//----------------------------------------------------------- include
    2129$phpwg_root_path = './';
    22 include_once( $phpwg_root_path.'common.php' );
     30include_once( $phpwg_root_path.'include/common.inc.php' );
    2331//----------------------------------------------------- template initialization
    2432//
  • trunk/admin.php

    r351 r354  
    11<?php
    2 /***************************************************************************
    3  *                                 admin.php                               *
    4  *                            -------------------                          *
    5  *   application   : PhpWebGallery 1.3 <http://phpwebgallery.net>          *
    6  *   author        : Pierrick LE GALL <pierrick@z0rglub.com>               *
    7  *                                                                         *
    8  *   $Id$
    9  *                                                                         *
    10  ***************************************************************************/
    11 
    12 /***************************************************************************
    13  *                                                                         *
    14  *   This program is free software; you can redistribute it and/or modify  *
    15  *   it under the terms of the GNU General Public License as published by  *
    16  *   the Free Software Foundation;                                         *
    17  *                                                                         *
    18  ***************************************************************************/
     2// +-----------------------------------------------------------------------+
     3// |                           admin.php                                |
     4// +-----------------------------------------------------------------------+
     5// | application   : PhpWebGallery <http://phpwebgallery.net>              |
     6// | branch        : 1.4                                                   |
     7// +-----------------------------------------------------------------------+
     8// | file          : $RCSfile$
     9// | last update   : $Date$
     10// | last modifier : $Author$
     11// | revision      : $Revision$
     12// +-----------------------------------------------------------------------+
     13// | This program is free software; you can redistribute it and/or modify  |
     14// | it under the terms of the GNU General Public License as published by  |
     15// | the Free Software Foundation                                          |
     16// |                                                                       |
     17// | This program is distributed in the hope that it will be useful, but   |
     18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
     19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
     20// | General Public License for more details.                              |
     21// |                                                                       |
     22// | You should have received a copy of the GNU General Public License     |
     23// | along with this program; if not, write to the Free Software           |
     24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
     25// | USA.                                                                  |
     26// +-----------------------------------------------------------------------+
    1927
    2028//----------------------------------------------------------- include
    2129$phpwg_root_path = './';
    22 include_once( $phpwg_root_path.'common.php' );
     30include_once( $phpwg_root_path.'include/common.inc.php' );
    2331include_once( './admin/include/isadmin.inc.php' );
    2432//----------------------------------------------------- template initialization
  • trunk/category.php

    r353 r354  
    2828//--------------------------------------------------------------------- include
    2929$phpwg_root_path = './';
    30 include_once( $phpwg_root_path.'common.php' );
     30include_once( $phpwg_root_path.'include/common.inc.php' );
    3131//---------------------------------------------------------------------- logout
    3232if ( isset( $_GET['act'] )
  • trunk/comments.php

    r345 r354  
    11<?php
    2 /***************************************************************************
    3  *                               comments.php                              *
    4  *                            -------------------                          *
    5  *   application   : PhpWebGallery 1.3 <http://phpwebgallery.net>          *
    6  *   author        : Pierrick LE GALL <pierrick@z0rglub.com>               *
    7  *                                                                         *
    8  *   $Id$
    9  *                                                                         *
    10  ***************************************************************************/
    11 
    12 /***************************************************************************
    13  *                                                                         *
    14  *   This program is free software; you can redistribute it and/or modify  *
    15  *   it under the terms of the GNU General Public License as published by  *
    16  *   the Free Software Foundation;                                         *
    17  *                                                                         *
    18  ***************************************************************************/
     2// +-----------------------------------------------------------------------+
     3// |                           comments.php                                |
     4// +-----------------------------------------------------------------------+
     5// | application   : PhpWebGallery <http://phpwebgallery.net>              |
     6// | branch        : 1.4                                                   |
     7// +-----------------------------------------------------------------------+
     8// | file          : $RCSfile$
     9// | last update   : $Date$
     10// | last modifier : $Author$
     11// | revision      : $Revision$
     12// +-----------------------------------------------------------------------+
     13// | This program is free software; you can redistribute it and/or modify  |
     14// | it under the terms of the GNU General Public License as published by  |
     15// | the Free Software Foundation                                          |
     16// |                                                                       |
     17// | This program is distributed in the hope that it will be useful, but   |
     18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
     19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
     20// | General Public License for more details.                              |
     21// |                                                                       |
     22// | You should have received a copy of the GNU General Public License     |
     23// | along with this program; if not, write to the Free Software           |
     24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
     25// | USA.                                                                  |
     26// +-----------------------------------------------------------------------+
    1927
    2028//----------------------------------------------------------- include
    2129$phpwg_root_path = './';
    22 include_once( $phpwg_root_path.'common.php' );
     30include_once( $phpwg_root_path.'include/common.inc.php' );
    2331
    2432//------------------------------------------------------------------- functions
  • trunk/identification.php

    r345 r354  
    11<?php
    2 /***************************************************************************
    3  *                            identification.php                           *
    4  *                            ------------------                           *
    5  *   application   : PhpWebGallery 1.3 <http://phpwebgallery.net>          *
    6  *   author        : Pierrick LE GALL <pierrick@z0rglub.com>               *
    7  *                                                                         *
    8  *   $Id$
    9  *                                                                         *
    10  ***************************************************************************/
    11 
    12 /***************************************************************************
    13  *                                                                         *
    14  *   This program is free software; you can redistribute it and/or modify  *
    15  *   it under the terms of the GNU General Public License as published by  *
    16  *   the Free Software Foundation;                                         *
    17  *                                                                         *
    18  ***************************************************************************/
     2// +-----------------------------------------------------------------------+
     3// |                           identification.php                                |
     4// +-----------------------------------------------------------------------+
     5// | application   : PhpWebGallery <http://phpwebgallery.net>              |
     6// | branch        : 1.4                                                   |
     7// +-----------------------------------------------------------------------+
     8// | file          : $RCSfile$
     9// | last update   : $Date$
     10// | last modifier : $Author$
     11// | revision      : $Revision$
     12// +-----------------------------------------------------------------------+
     13// | This program is free software; you can redistribute it and/or modify  |
     14// | it under the terms of the GNU General Public License as published by  |
     15// | the Free Software Foundation                                          |
     16// |                                                                       |
     17// | This program is distributed in the hope that it will be useful, but   |
     18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
     19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
     20// | General Public License for more details.                              |
     21// |                                                                       |
     22// | You should have received a copy of the GNU General Public License     |
     23// | along with this program; if not, write to the Free Software           |
     24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
     25// | USA.                                                                  |
     26// +-----------------------------------------------------------------------+
    1927
    2028//----------------------------------------------------------- include
    2129$phpwg_root_path = './';
    22 include_once( $phpwg_root_path.'common.php' );
     30include_once( $phpwg_root_path.'include/common.inc.php' );
    2331
    2432//-------------------------------------------------------------- identification
  • trunk/index.php

    r345 r354  
    11<?php
    2 /***************************************************************************
    3  *                                  index.php                              *
    4  *                            -------------------                          *
    5  *   application   : PhpWebGallery 1.3 <http://phpwebgallery.net>          *
    6  *   author        : Pierrick LE GALL <pierrick@z0rglub.com>               *
    7  *                                                                         *
    8  *   $Id$
    9  *                                                                         *
    10  ***************************************************************************
    11 
    12 /***************************************************************************
    13  *                                                                         *
    14  *   This program is free software; you can redistribute it and/or modify  *
    15  *   it under the terms of the GNU General Public License as published by  *
    16  *   the Free Software Foundation;                                         *
    17  *                                                                         *
    18  ***************************************************************************/
     2// +-----------------------------------------------------------------------+
     3// |                           index.php                                |
     4// +-----------------------------------------------------------------------+
     5// | application   : PhpWebGallery <http://phpwebgallery.net>              |
     6// | branch        : 1.4                                                   |
     7// +-----------------------------------------------------------------------+
     8// | file          : $RCSfile$
     9// | last update   : $Date$
     10// | last modifier : $Author$
     11// | revision      : $Revision$
     12// +-----------------------------------------------------------------------+
     13// | This program is free software; you can redistribute it and/or modify  |
     14// | it under the terms of the GNU General Public License as published by  |
     15// | the Free Software Foundation                                          |
     16// |                                                                       |
     17// | This program is distributed in the hope that it will be useful, but   |
     18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
     19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
     20// | General Public License for more details.                              |
     21// |                                                                       |
     22// | You should have received a copy of the GNU General Public License     |
     23// | along with this program; if not, write to the Free Software           |
     24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
     25// | USA.                                                                  |
     26// +-----------------------------------------------------------------------+
    1927
    2028//----------------------------------------------------------- include
    2129$phpwg_root_path = './';
    22 include_once( $phpwg_root_path.'common.php' );
     30include_once( $phpwg_root_path.'include/common.inc.php' );
    2331if ( $conf['access'] == 'restricted' )
    2432{
  • trunk/install.php

    r345 r354  
    11<?php
    2 /***************************************************************************
    3  *                                install.php                              *
    4  *                            -------------------                          *
    5  *   application   : PhpWebGallery 1.3 <http://phpwebgallery.net>          *
    6  *   author        : Pierrick LE GALL <pierrick@z0rglub.com>               *
    7  *                                                                         *
    8  *   $Id$
    9  *                                                                         *
    10  ***************************************************************************/
    11 
    12 /***************************************************************************
    13  *                                                                         *
    14  *   This program is free software; you can redistribute it and/or modify  *
    15  *   it under the terms of the GNU General Public License as published by  *
    16  *   the Free Software Foundation;                                         *
    17  *                                                                         *
    18  ***************************************************************************/
     2// +-----------------------------------------------------------------------+
     3// |                           install.php                                |
     4// +-----------------------------------------------------------------------+
     5// | application   : PhpWebGallery <http://phpwebgallery.net>              |
     6// | branch        : 1.4                                                   |
     7// +-----------------------------------------------------------------------+
     8// | file          : $RCSfile$
     9// | last update   : $Date$
     10// | last modifier : $Author$
     11// | revision      : $Revision$
     12// +-----------------------------------------------------------------------+
     13// | This program is free software; you can redistribute it and/or modify  |
     14// | it under the terms of the GNU General Public License as published by  |
     15// | the Free Software Foundation                                          |
     16// |                                                                       |
     17// | This program is distributed in the hope that it will be useful, but   |
     18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
     19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
     20// | General Public License for more details.                              |
     21// |                                                                       |
     22// | You should have received a copy of the GNU General Public License     |
     23// | along with this program; if not, write to the Free Software           |
     24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
     25// | USA.                                                                  |
     26// +-----------------------------------------------------------------------+
    1927
    2028//-------------------------------------------------------------------- includes
  • trunk/picture.php

    r345 r354  
    11<?php
    2 /***************************************************************************
    3  *                                picture.php                              *
    4  *                            -------------------                          *
    5  *   application   : PhpWebGallery 1.3 <http://phpwebgallery.net>          *
    6  *   author        : Pierrick LE GALL <pierrick@z0rglub.com>               *
    7  *                                                                         *
    8  *   $Id$
    9  *                                                                         *
    10  ***************************************************************************/
    11 
    12 /***************************************************************************
    13  *                                                                         *
    14  *   This program is free software; you can redistribute it and/or modify  *
    15  *   it under the terms of the GNU General Public License as published by  *
    16  *   the Free Software Foundation;                                         *
    17  *                                                                         *
    18  ***************************************************************************/
    19 // this page shows the image full size
     2// +-----------------------------------------------------------------------+
     3// |                           picture.php                                |
     4// +-----------------------------------------------------------------------+
     5// | application   : PhpWebGallery <http://phpwebgallery.net>              |
     6// | branch        : 1.4                                                   |
     7// +-----------------------------------------------------------------------+
     8// | file          : $RCSfile$
     9// | last update   : $Date$
     10// | last modifier : $Author$
     11// | revision      : $Revision$
     12// +-----------------------------------------------------------------------+
     13// | This program is free software; you can redistribute it and/or modify  |
     14// | it under the terms of the GNU General Public License as published by  |
     15// | the Free Software Foundation                                          |
     16// |                                                                       |
     17// | This program is distributed in the hope that it will be useful, but   |
     18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
     19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
     20// | General Public License for more details.                              |
     21// |                                                                       |
     22// | You should have received a copy of the GNU General Public License     |
     23// | along with this program; if not, write to the Free Software           |
     24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
     25// | USA.                                                                  |
     26// +-----------------------------------------------------------------------+
    2027//----------------------------------------------------------- include
    2128$phpwg_root_path = './';
    22 include_once( $phpwg_root_path.'common.php' );   
     29include_once( $phpwg_root_path.'include/common.inc.php' );   
    2330//-------------------------------------------------- access authorization check
    2431check_cat_id( $_GET['cat'] );
  • trunk/profile.php

    r351 r354  
    11<?php
    22// +-----------------------------------------------------------------------+
    3 // |                           profile.php                           |
     3// |                           profile.php                                |
    44// +-----------------------------------------------------------------------+
    55// | application   : PhpWebGallery <http://phpwebgallery.net>              |
    6 // | branch        : 1.4                                           |
    7 // | author        : Pierrick LE GALL <pierrick@z0rglub.com>               |
     6// | branch        : 1.4                                                   |
    87// +-----------------------------------------------------------------------+
    98// | file          : $RCSfile$
     
    1413// | This program is free software; you can redistribute it and/or modify  |
    1514// | it under the terms of the GNU General Public License as published by  |
    16 // | the Free Software Foundation;                                         |
     15// | the Free Software Foundation                                          |
     16// |                                                                       |
     17// | This program is distributed in the hope that it will be useful, but   |
     18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
     19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
     20// | General Public License for more details.                              |
     21// |                                                                       |
     22// | You should have received a copy of the GNU General Public License     |
     23// | along with this program; if not, write to the Free Software           |
     24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
     25// | USA.                                                                  |
    1726// +-----------------------------------------------------------------------+
    1827
     
    2029//----------------------------------------------------------- include
    2130$phpwg_root_path = './';
    22 include_once( $phpwg_root_path.'common.php' );
     31include_once( $phpwg_root_path.'include/common.inc.php' );
    2332//-------------------------------------------------- access authorization check
    2433check_login_authorization();
  • trunk/register.php

    r345 r354  
    11<?php
    2 /***************************************************************************
    3  *                                register.php                             *
    4  *                            -------------------                          *
    5  *   application   : PhpWebGallery 1.3 <http://phpwebgallery.net>          *
    6  *   author        : Pierrick LE GALL <pierrick@z0rglub.com>               *
    7  *                                                                         *
    8  *   $Id$
    9  *                                                                         *
    10  ***************************************************************************/
    11 
    12 /***************************************************************************
    13  *                                                                         *
    14  *   This program is free software; you can redistribute it and/or modify  *
    15  *   it under the terms of the GNU General Public License as published by  *
    16  *   the Free Software Foundation;                                         *
    17  *                                                                         *
    18  ***************************************************************************/
     2// +-----------------------------------------------------------------------+
     3// |                           register.php                                |
     4// +-----------------------------------------------------------------------+
     5// | application   : PhpWebGallery <http://phpwebgallery.net>              |
     6// | branch        : 1.4                                                   |
     7// +-----------------------------------------------------------------------+
     8// | file          : $RCSfile$
     9// | last update   : $Date$
     10// | last modifier : $Author$
     11// | revision      : $Revision$
     12// +-----------------------------------------------------------------------+
     13// | This program is free software; you can redistribute it and/or modify  |
     14// | it under the terms of the GNU General Public License as published by  |
     15// | the Free Software Foundation                                          |
     16// |                                                                       |
     17// | This program is distributed in the hope that it will be useful, but   |
     18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
     19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
     20// | General Public License for more details.                              |
     21// |                                                                       |
     22// | You should have received a copy of the GNU General Public License     |
     23// | along with this program; if not, write to the Free Software           |
     24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
     25// | USA.                                                                  |
     26// +-----------------------------------------------------------------------+
    1927
    2028//----------------------------------------------------------- include
    2129$phpwg_root_path = './';
    22 include_once( $phpwg_root_path.'common.php' );
     30include_once( $phpwg_root_path.'incelude/common.inc.php' );
    2331//-------------------------------------------------- access authorization check
    2432if ( $conf['access'] == "restricted" )
  • trunk/search.php

    r345 r354  
    11<?php
    2 /***************************************************************************
    3  *                                 search.php                              *
    4  *                            -------------------                          *
    5  *   application   : PhpWebGallery 1.3 <http://phpwebgallery.net>          *
    6  *   author        : Pierrick LE GALL <pierrick@z0rglub.com>               *
    7  *                                                                         *
    8  *   $Id$
    9  *                                                                         *
    10  ***************************************************************************/
    11 
    12 /***************************************************************************
    13  *                                                                         *
    14  *   This program is free software; you can redistribute it and/or modify  *
    15  *   it under the terms of the GNU General Public License as published by  *
    16  *   the Free Software Foundation;                                         *
    17  *                                                                         *
    18  ***************************************************************************/
     2// +-----------------------------------------------------------------------+
     3// |                           search.php                                |
     4// +-----------------------------------------------------------------------+
     5// | application   : PhpWebGallery <http://phpwebgallery.net>              |
     6// | branch        : 1.4                                                   |
     7// +-----------------------------------------------------------------------+
     8// | file          : $RCSfile$
     9// | last update   : $Date$
     10// | last modifier : $Author$
     11// | revision      : $Revision$
     12// +-----------------------------------------------------------------------+
     13// | This program is free software; you can redistribute it and/or modify  |
     14// | it under the terms of the GNU General Public License as published by  |
     15// | the Free Software Foundation                                          |
     16// |                                                                       |
     17// | This program is distributed in the hope that it will be useful, but   |
     18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
     19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
     20// | General Public License for more details.                              |
     21// |                                                                       |
     22// | You should have received a copy of the GNU General Public License     |
     23// | along with this program; if not, write to the Free Software           |
     24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
     25// | USA.                                                                  |
     26// +-----------------------------------------------------------------------+
    1927
    2028//----------------------------------------------------------- include
    2129$phpwg_root_path = './';
    22 include_once( $phpwg_root_path.'common.php' );
     30include_once( $phpwg_root_path.'include/common.inc.php' );
    2331//-------------------------------------------------- access authorization check
    2432check_login_authorization();
  • trunk/upload.php

    r345 r354  
    11<?php
    2 /***************************************************************************
    3  *                                 upload.php                              *
    4  *                            -------------------                          *
    5  *   application   : PhpWebGallery 1.3 <http://phpwebgallery.net>          *
    6  *   author        : Pierrick LE GALL <pierrick@z0rglub.com>               *
    7  *                                                                         *
    8  *   $Id$
    9  *                                                                         *
    10  ***************************************************************************/
    11 
    12 /***************************************************************************
    13  *                                                                         *
    14  *   This program is free software; you can redistribute it and/or modify  *
    15  *   it under the terms of the GNU General Public License as published by  *
    16  *   the Free Software Foundation;                                         *
    17  *                                                                         *
    18  ***************************************************************************/
    19 
    20 //----------------------------------------------------------- include
     2// +-----------------------------------------------------------------------+
     3// |                           upload.php                                |
     4// +-----------------------------------------------------------------------+
     5// | application   : PhpWebGallery <http://phpwebgallery.net>              |
     6// | branch        : 1.4                                                   |
     7// +-----------------------------------------------------------------------+
     8// | file          : $RCSfile$
     9// | last update   : $Date$
     10// | last modifier : $Author$
     11// | revision      : $Revision$
     12// +-----------------------------------------------------------------------+
     13// | This program is free software; you can redistribute it and/or modify  |
     14// | it under the terms of the GNU General Public License as published by  |
     15// | the Free Software Foundation                                          |
     16// |                                                                       |
     17// | This program is distributed in the hope that it will be useful, but   |
     18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
     19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
     20// | General Public License for more details.                              |
     21// |                                                                       |
     22// | You should have received a copy of the GNU General Public License     |
     23// | along with this program; if not, write to the Free Software           |
     24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
     25// | USA.                                                                  |
     26// +-----------------------------------------------------------------------+
    2127$phpwg_root_path = './';
    22 include_once( $phpwg_root_path.'common.php' );
     28include_once( $phpwg_root_path.'include/common.inc.php' );
    2329
    2430//------------------------------------------------------------------- functions
Note: See TracChangeset for help on using the changeset viewer.