Changeset 15201 for trunk/periodic
- Timestamp:
- 06/06/11 02:27:38 (12 months ago)
- File:
-
- 1 edited
-
trunk/periodic/cron.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/periodic/cron.php
r14847 r15201 1 1 <?php 2 /*************************************************************************** 3 * Dolphin Smart Community Builder 4 * ----------------- 5 * begin : Mon Mar 23 2006 6 * copyright : (C) 2006 BoonEx Group 7 * website : http://www.boonex.com/ 8 * This file is part of Dolphin - Smart Community Builder 9 * 10 * Dolphin is free software. This work is licensed under a Creative Commons Attribution 3.0 License. 11 * http://creativecommons.org/licenses/by/3.0/ 12 * 13 * Dolphin is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 14 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 15 * See the Creative Commons Attribution 3.0 License for more details. 16 * You should have received a copy of the Creative Commons Attribution 3.0 License along with Dolphin, 17 * see license.txt file; if not, write to marketing@boonex.com 18 ***************************************************************************/ 2 /** 3 * @package Dolphin Core 4 * @copyright Copyright (c) BoonEx Pty Limited - http://www.boonex.com/ 5 * @license CC-BY - http://creativecommons.org/licenses/by/3.0/ 6 */ 19 7 20 8 $GLOBALS['bx_profiler_disable'] = true; … … 23 11 $aPathInfo = pathinfo(__FILE__); 24 12 require_once ($aPathInfo['dirname'] . '/../inc/header.inc.php'); 25 require_once(BX_DIRECTORY_PATH_INC . 'utils.inc.php');26 require_once(BX_DIRECTORY_PATH_INC . 'profiles.inc.php' );27 require_once(BX_DIRECTORY_PATH_CLASSES . 'BxDolDb.php');28 13 29 14 … … 142 127 } 143 128 else if(!empty($aJob['eval'])) { 144 require_once( BX_DIRECTORY_PATH_CLASSES . 'BxDolService.php');145 129 eval($aJob['eval']); 146 130 } … … 157 141 } 158 142 159 ?>
Note: See TracChangeset
for help on using the changeset viewer.