mirror of
https://github.com/samsonjs/mit-license.git
synced 2026-06-28 05:29:29 +00:00
Merge pull request #2 from mathiasbynens/patch-2
Use `date('Y')` instead of the needlessly verbose `date('Y', time())`.
This commit is contained in:
commit
85e06418dc
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