| Hannes Magnusson 2006-09-28, 7:58 am |
| bjori Thu Sep 28 12:58:22 2006 UTC
Modified files:
/phpweb error.php
Log:
Add @ and :: shortcuts
http://cvs.php.net/viewvc.cgi/phpwe...7&diff_format=u
Index: phpweb/error.php
diff -u phpweb/error.php:1.56 phpweb/error.php:1.57
--- phpweb/error.php:1.56 Wed Sep 20 18:43:54 2006
+++ phpweb/error.php Thu Sep 28 12:58:22 2006
@@ -1,6 +1,6 @@
<?php
-// $Id: error.php,v 1.56 2006/09/20 18:43:54 goba Exp $
+// $Id: error.php,v 1.57 2006/09/28 12:58:22 bjori Exp $
/*
@@ -234,6 +234,7 @@
"if" => "language.control-structures",
"static" => "language.variables.scope",
"global" => "language.variables.scope",
+ "@" => "language.operators.errorcontrol",
"tut" => "tutorial",
"tut.php" => "tutorial", // BC
@@ -260,6 +261,7 @@
"autoload" => "language.oop5.autoload",
"__autoload" => "language.oop5.autoload",
"reflection" => "language.oop5.reflection",
+ "::" => "language.oop5.paamayim-nekudotayim",
"throw" => "language.exceptions",
"try" => "language.exceptions",
|