common: enable perl v5.14 features everywhere
[sheet.git] / common.inc.plp
index 11f1fb4a18a7e2959048542198551c2845204c40..cfd961e20182d39ea8e6f99379bc5cfcbfe33dea 100644 (file)
@@ -1,6 +1,6 @@
 <:
+use 5.014;
 use utf8;
-use strict;
 use warnings;
 no  warnings 'qw';  # you know what you doing
 no  warnings 'uninitialized';  # save some useless checks for more legible code
@@ -41,7 +41,7 @@ sub stylesheet {
 
        return join "\n", map { sprintf(
                '<link rel="%s" type="text/css" media="all" href="%s" title="%s">',
-               $_ eq $style ? 'stylesheet' : 'alternate stylesheet', "/$_.css?1.7", $_
+               $_ eq $style ? 'stylesheet' : 'alternate stylesheet', "/$_.css?1.9", $_
        ) } @_;
 }