Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion www/breakdown.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

<div class="results_header">
<h2>Content Breakdown</h2>
<p>TODO intro about that here.</p>
<p>How this site's assets are comprised by content type.</p>
</div>

<?php include("testinfo_command-bar.inc"); ?>
Expand Down
2 changes: 1 addition & 1 deletion www/common.inc
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ if (!$privateInstall) {

// constants
define('VER_WEBPAGETEST', '21.07'); // webpagetest version
define('VER_CSS', 157.7); // version of the sitewide css file
define('VER_CSS', 160); // version of the sitewide css file
define('VER_JS', 40); // version of the sitewide javascript file
define('VER_JS_TEST', 47); // version of the javascript specific to the test pages
define('VER_JS_RUNNING', 1); // version of the javascript specific to the test running status page
Expand Down
6 changes: 3 additions & 3 deletions www/details.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ function createForm($formName, $btnText, $callback, $id, $owner, $secret, $siteK
<?php
echo '<h3 class="hed_sub">Observed Metrics <em>(Run number ' . $run . ( $cached ? ', Repeat View' : '' ) . ')</em></h3>';


if( $testResults->countRuns() > 1 ){
$hasRepeats = GetMedianRun($pageData, 1, $median_metric);
if( $testResults->countRuns() > 1 || $hasRepeats ){
$runs = $testResults->countRuns() + 1;
$hasRepeats = GetMedianRun($pageData, 1, $median_metric);

$useFriendlyUrls = !isset($_REQUEST['end']) && FRIENDLY_URLS;
$endParams = isset($_REQUEST['end']) ? ("end=" . $_REQUEST['end']) : "";

Expand Down
Loading