Update of /cvsroot/phpwebsite-comm/CVSROOT
In directory sc8-pr-cvs1:/tmp/cvs-serv25719
Modified Files:
enforce_naming
Log Message:
regex change to graphic check
Index: enforce_naming
===================================================================
RCS file: /cvsroot/phpwebsite-comm/CVSROOT/enforce_naming,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** enforce_naming 26 May 2003 14:55:34 -0000 1.3
--- enforce_naming 26 May 2003 18:42:54 -0000 1.4
***************
*** 58,62 ****
# Verify that binary graphic files aren't added.
! if ($_ eq /\.png$/i or $_ eq /\.jpg$/i or $_ eq /\.gif$/i) {
print "Adding binary graphics is prohibited. ";
print "Please create your graphic in SVG format. ";
--- 58,62 ----
# Verify that binary graphic files aren't added.
! if ($_ eq /\.png$\|\.gif$\|\.jpg$/i) {
print "Adding binary graphics is prohibited. ";
print "Please create your graphic in SVG format. ";
|