Passed
Push — master ( c0a3a7...3b84a4 )
by Jeroen
58:51
created

views/default/admin/server/web_server.php (1 issue)

1
<?php
2
/**
3
 * Web server info
4
 */
5
6
?>
7
<table class="elgg-table-alt">
8
	<tr>
9
		<td><b><?= elgg_echo('admin:server:label:server'); ?></b></td>
10
		<td><?= $_SERVER['SERVER_SOFTWARE']; ?></td>
11
	</tr>
12
	<tr>
13
		<td><b><?= elgg_echo('admin:server:label:log_location'); ?></b></td>
14
		<td><?= getenv('APACHE_LOG_DIR'); ?></td>
0 ignored issues
show
Are you sure getenv('APACHE_LOG_DIR') of type false|string|array can be used in echo? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

14
		<td><?= /** @scrutinizer ignore-type */ getenv('APACHE_LOG_DIR'); ?></td>
Loading history...
15
	</tr>
16
</table>
17