Merge pull request #2 from mathiasbynens/patch-2

Use `date('Y')` instead of the needlessly verbose `date('Y', time())`.
This commit is contained in:
Remy Sharp 2011-10-16 09:38:12 -07:00
commit 85e06418dc

View file

@ -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>