Skip to content

Commit aa930bc

Browse files
committed
Fix carriage returns
1 parent 9d533dd commit aa930bc

File tree

2 files changed

+34
-34
lines changed

2 files changed

+34
-34
lines changed

www/font_list.php

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
1-
<?php
2-
/**
3-
* @package php-font-lib
4-
* @link https://github.com/PhenX/php-font-lib
5-
* @author Fabien Ménager <[email protected]>
6-
* @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
7-
*/
8-
?><!DOCTYPE html>
9-
<html>
10-
<head>
11-
<link rel="stylesheet" href="css/style.css" />
12-
</head>
13-
<body>
14-
<?php
15-
16-
$fonts = glob("../fonts/*.{ttf,TTF,otf,OTF,ttc,TTC,eot,EOT,woff,WOFF}", GLOB_BRACE);
17-
sort($fonts);
18-
19-
echo "<ul>";
20-
foreach($fonts as $font) {
21-
echo "<li><a href=\"font_info.php?fontfile=$font\" target=\"font-info\">".basename($font)."</a></li>";
22-
}
23-
echo "</ul>";
24-
25-
?>
26-
</body>
1+
<?php
2+
/**
3+
* @package php-font-lib
4+
* @link https://github.com/PhenX/php-font-lib
5+
* @author Fabien Ménager <[email protected]>
6+
* @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
7+
*/
8+
?><!DOCTYPE html>
9+
<html>
10+
<head>
11+
<link rel="stylesheet" href="css/style.css" />
12+
</head>
13+
<body>
14+
<?php
15+
16+
$fonts = glob("../fonts/*.{ttf,TTF,otf,OTF,ttc,TTC,eot,EOT,woff,WOFF}", GLOB_BRACE);
17+
sort($fonts);
18+
19+
echo "<ul>";
20+
foreach($fonts as $font) {
21+
echo "<li><a href=\"font_info.php?fontfile=$font\" target=\"font-info\">".basename($font)."</a></li>";
22+
}
23+
echo "</ul>";
24+
25+
?>
26+
</body>
2727
</html>

www/index.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<?php
2-
/**
3-
* @package php-font-lib
4-
* @link https://github.com/PhenX/php-font-lib
5-
* @author Fabien Ménager <[email protected]>
6-
* @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
7-
*/
8-
1+
<?php
2+
/**
3+
* @package php-font-lib
4+
* @link https://github.com/PhenX/php-font-lib
5+
* @author Fabien Ménager <[email protected]>
6+
* @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
7+
*/
8+
99
header("Location: font_explorer.html");

0 commit comments

Comments
 (0)