mirror of
https://github.com/samsonjs/mit-license.git
synced 2026-04-11 12:15:47 +00:00
Use date('Y') instead of the needlessly verbose date('Y', time()).
This commit is contained in:
parent
609a9e7426
commit
c93b1b2815
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@
|
|||
<body>
|
||||
<article>
|
||||
<h1>The MIT License (MIT)</h1>
|
||||
<p>Copyright (c) <?php echo date('Y', time()), ' ', $holder; ?></p>
|
||||
<p>Copyright (c) <?php echo date('Y') . ' ' . $holder; ?></p>
|
||||
<p>Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:</p>
|
||||
|
||||
<p>The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.</p>
|
||||
|
|
|
|||
Loading…
Reference in a new issue