From 57b637528b2b46be0412378e6abb8338a20d66d1 Mon Sep 17 00:00:00 2001 From: Ala' Ibrahim Date: Sat, 31 Oct 2015 13:36:38 -0700 Subject: [PATCH] Fix default Copyright year It's already 2015, and it still shows 2010, this change will make it read the current year, rather than have it static. --- ftplugin/php/doc.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ftplugin/php/doc.vim b/ftplugin/php/doc.vim index eaf0aa7..2a18cc5 100644 --- a/ftplugin/php/doc.vim +++ b/ftplugin/php/doc.vim @@ -95,7 +95,7 @@ let g:pdv_cfg_Version = "//autogen//" let g:pdv_cfg_display_Author = 1 let g:pdv_cfg_Author = "" let g:pdv_cfg_display_Copyright = 1 -let g:pdv_cfg_Copyright = "Copyright (c) 2010 All rights reserved." +let g:pdv_cfg_Copyright = "Copyright (c) " . strftime("%Y") . " All rights reserved." let g:pdv_cfg_display_License = 1 let g:pdv_cfg_License = "PHP Version 3.0 {@link http://www.php.net/license/3_0.txt}"