Use date('Y') instead of the needlessly verbose date('Y', time()).

This commit is contained in:
Mathias Bynens 2011-10-16 19:37:50 +03:00
parent 609a9e7426
commit c93b1b2815

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>