Skip to content

Commit

Permalink
Fixes for errors introduced with conflict resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
frankmayer committed Dec 18, 2016
1 parent b255a4b commit f549bb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/system/debug/debug.php
Original file line number Diff line number Diff line change
Expand Up @@ -2079,7 +2079,7 @@ protected function prettyPrintJSON($json = '')
protected function writeToFile()
{
$app = JFactory::getApplication();
$domain = ($app->isClient('site')) ? 'site' : 'admin';
$domain = $app->isClient('site') ? 'site' : 'admin';
$input = $app->input;
$file = $app->get('log_path') . '/' . $domain . '_' . $input->get('option') . $input->get('view') . $input->get('layout') . '.sql';

Expand Down

0 comments on commit f549bb7

Please sign in to comment.