We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 72adf69 + 7e5d886 commit 9d255cdCopy full SHA for 9d255cd
user_guide_src/source/conf.py
@@ -12,13 +12,15 @@
12
#
13
# import os
14
# import sys
15
+import datetime
16
# sys.path.insert(0, os.path.abspath('.'))
17
18
# -- Project information -----------------------------------------------------
19
20
project = 'CodeIgniter'
21
author = 'CodeIgniter Foundation'
-copyright = '2019-2023 CodeIgniter Foundation'
22
+year_now = datetime.date.today().year
23
+copyright = '2019-' + str(year_now) + ' CodeIgniter Foundation'
24
25
# The short X.Y version.
26
version = '4.2'
@@ -137,4 +139,4 @@
137
139
epub_title = 'CodeIgniter4'
138
140
epub_author = 'CodeIgniter Foundation'
141
epub_publisher = 'CodeIgniter Foundation'
-epub_copyright = '2019-2022 CodeIgniter Foundation'
142
+epub_copyright = copyright
0 commit comments