Changeset 2232 for trunk/admin/intro.php


Ignore:
Timestamp:
Mar 1, 2008, 2:23:51 PM (16 years ago)
Author:
rub
Message:

0000809: Use more php classes implementation

Use class for c13y

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/intro.php

    r2230 r2232  
    33// | PhpWebGallery - a PHP based picture gallery                           |
    44// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
    5 // | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
     5// | Copyright (C) 2003-2008 PhpWebGallery Team - http://phpwebgallery.net |
    66// +-----------------------------------------------------------------------+
    77// | file          : $Id$
     
    3131
    3232include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
     33include_once(PHPWG_ROOT_PATH.'admin/include/check_integrity.class.php');
     34include_once(PHPWG_ROOT_PATH.'admin/include/c13y_internal.class.php');
    3335
    3436// +-----------------------------------------------------------------------+
     
    272274// Add the PhpWebGallery Official menu
    273275  $template->assign( 'pwgmenu', pwg_URL() );
    274  
     276
    275277// +-----------------------------------------------------------------------+
    276278// |                           sending html code                           |
     
    279281$template->assign_var_from_handle('ADMIN_CONTENT', 'intro');
    280282
    281 display_check_integrity();
     283// Check integrity
     284$c13y = new check_integrity();
     285// add internal checks
     286new c13y_internal();
     287// check and display
     288$c13y->check();
     289$c13y->display();
    282290
    283291?>
Note: See TracChangeset for help on using the changeset viewer.