fixed indentation

This commit is contained in:
gtlsgamr 2022-07-29 10:39:56 +00:00
parent b7ac0ee5fb
commit 4cb1f36cb6
1 changed files with 7 additions and 7 deletions

View File

@ -129,14 +129,14 @@ $parser = wiki::factory(true);
<div class="list-group-item">
<ul>
<?php
$file = fopen("/home/gtlsgamr/.site_spotlight", 'r');
while( !feof( $file ) )
{
$line = fgets($file);
if($line!='')
$file = fopen("/home/gtlsgamr/.site_spotlight", 'r');
while( !feof( $file ) )
{
$line = fgets($file);
if($line!='')
echo '<li>'.$line.'</li>' ;
}
fclose($file);
}
fclose($file);
?>
</ul>
</div>