Skip to content

Commit

Permalink
Sync internal changes from xhprof_lib
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.php.net/repository/pecl/xhprof/trunk@297642 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
scottmac committed Apr 7, 2010
1 parent 0b3d405 commit 6bf01a1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion xhprof_html/callgraph.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
// are at the same level.
$GLOBALS['XHPROF_LIB_ROOT'] = dirname(__FILE__) . '/../xhprof_lib';

include_once $GLOBALS['XHPROF_LIB_ROOT'].'/display/xhprof.php';
require_once $GLOBALS['XHPROF_LIB_ROOT'].'/display/xhprof.php';

ini_set('max_execution_time', 100);

Expand Down
2 changes: 1 addition & 1 deletion xhprof_html/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
// are at the same level.
$GLOBALS['XHPROF_LIB_ROOT'] = dirname(__FILE__) . '/../xhprof_lib';

include_once $GLOBALS['XHPROF_LIB_ROOT'].'/display/xhprof.php';
require_once $GLOBALS['XHPROF_LIB_ROOT'].'/display/xhprof.php';

// param name, its type, and default value
$params = array('run' => array(XHPROF_STRING_PARAM, ''),
Expand Down
4 changes: 2 additions & 2 deletions xhprof_html/typeahead.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
// are at the same level.
$GLOBALS['XHPROF_LIB_ROOT'] = dirname(__FILE__) . '/../xhprof_lib';

include_once $GLOBALS['XHPROF_LIB_ROOT'].'/display/xhprof.php';
require_once $GLOBALS['XHPROF_LIB_ROOT'].'/display/xhprof.php';

$xhprof_runs_impl = new XHProfRuns_Default();

include_once $GLOBALS['XHPROF_LIB_ROOT'].'/display/typeahead_common.php';
require_once $GLOBALS['XHPROF_LIB_ROOT'].'/display/typeahead_common.php';

0 comments on commit 6bf01a1

Please sign in to comment.