diff --git a/www/consolelog.php b/www/consolelog.php index f8c324b50f..9301b731dd 100644 --- a/www/consolelog.php +++ b/www/consolelog.php @@ -18,6 +18,8 @@ $testInfo = TestInfo::fromFiles($testPath); $testRunResults = TestRunResults::fromFiles($testInfo, $run, $cached, $fileHandler); +$socialDesc = 'Console.log output of the page being tested'; + // template echo view('pages.consolelog', [ 'test_results_view' => true, diff --git a/www/resources/views/default.blade.php b/www/resources/views/default.blade.php index 7c42aa64b2..f2924486ad 100644 --- a/www/resources/views/default.blade.php +++ b/www/resources/views/default.blade.php @@ -15,6 +15,9 @@ global $client_error; global $test_is_private; global $noanalytics; + global $socialDesc; + global $useScreenshot; + global $socialTitle; $page_title = $page_title ? $page_title : 'WebPageTest'; $body_class = $body_class ? ' class=' . $body_class : '';