Update of /cvsroot/phpwebsite-comm/CVSROOT
In directory sc8-pr-cvs1:/tmp/cvs-serv23641
Modified Files:
enforce_naming
Log Message:
changed to binding operator
Index: enforce_naming
===================================================================
RCS file: /cvsroot/phpwebsite-comm/CVSROOT/enforce_naming,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** enforce_naming 26 May 2003 18:56:40 -0000 1.5
--- enforce_naming 26 May 2003 20:01:22 -0000 1.6
***************
*** 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. ";
--- 58,62 ----
# Verify that binary graphic files aren't added.
! if ($_ =~ /\.png$\|\.gif$\|\.jpg$/i) {
print "Adding binary graphics is prohibited. ";
print "Please create your graphic in SVG format. ";
|