Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0838e0e

Browse files
committedJun 26, 2023
Update to 1.86
1 parent f4104a0 commit 0838e0e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+122
-120
lines changed
 

‎FAQ.htm

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
22
<html>
33
<head>
4-
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
4+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
55
<title>FAQ</title>
66
<link type="text/css" rel="stylesheet" href="fpdf.css">
77
<style type="text/css">
@@ -15,7 +15,7 @@ <h1>FAQ</h1>
1515
<ul>
1616
<li><b>1.</b> <a href='#q1'>What's exactly the license of FPDF? Are there any usage restrictions?</a></li>
1717
<li><b>2.</b> <a href='#q2'>I get the following error when I try to generate a PDF: Some data has already been output, can't send PDF file</a></li>
18-
<li><b>3.</b> <a href='#q3'>Accented letters are replaced with some strange characters like é.</a></li>
18+
<li><b>3.</b> <a href='#q3'>Accented letters are replaced by some strange characters like é.</a></li>
1919
<li><b>4.</b> <a href='#q4'>I try to display the Euro symbol but it doesn't work.</a></li>
2020
<li><b>5.</b> <a href='#q5'>I try to display a variable in the Header method but nothing prints.</a></li>
2121
<li><b>6.</b> <a href='#q6'>I have defined the Header and Footer methods in my PDF class but nothing shows.</a></li>
@@ -59,7 +59,7 @@ <h1>FAQ</h1>
5959
</li>
6060

6161
<li id='q3'>
62-
<p><b>3.</b> <span class='question'>Accented letters are replaced with some strange characters like é.</span></p>
62+
<p><b>3.</b> <span class='question'>Accented letters are replaced by some strange characters like é.</span></p>
6363
Don't use UTF-8 with the standard fonts; they expect text encoded in windows-1252.
6464
You can perform a conversion with iconv:
6565
<div class="doc-source">

‎changelog.htm

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
22
<html>
33
<head>
4-
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
4+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
55
<title>Changelog</title>
66
<link type="text/css" rel="stylesheet" href="fpdf.css">
77
<style type="text/css">
@@ -11,6 +11,11 @@
1111
<body>
1212
<h1>Changelog</h1>
1313
<dl>
14+
<dt><strong>v1.86</strong> (2023-06-25)</dt>
15+
<dd>
16+
- Added a parameter to AddFont() to specify the directory where to load the font definition file.<br>
17+
- Fixed a bug related to the PDF creation date.<br>
18+
</dd>
1419
<dt><strong>v1.85</strong> (2022-11-10)</dt>
1520
<dd>
1621
- Removed deprecation notices on PHP 8.2.<br>

0 commit comments

Comments
 (0)
Please sign in to comment.