json2: fixed order of exception classes, it threw fits about missing Zend_Exception in ubuntu's latest PHP 5.2.6
authorDan
Sun, 30 Aug 2009 00:05:33 -0400
changeset 1111 8fae8fb3cbb1
parent 1101 30d8bb88572d
child 1112 679916c80599
json2: fixed order of exception classes, it threw fits about missing Zend_Exception in ubuntu's latest PHP 5.2.6
includes/json2.php
--- a/includes/json2.php	Fri Aug 21 20:41:38 2009 -0400
+++ b/includes/json2.php	Sun Aug 30 00:05:33 2009 -0400
@@ -969,6 +969,15 @@
 
 /**
  * @category   Zend
+ * @package    Zend
+ * @copyright  Copyright (c) 2005-2007 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license    http://framework.zend.com/license/new-bsd     New BSD License
+ */
+class Zend_Exception extends Exception
+{}
+
+/**
+ * @category   Zend
  * @package    Zend_Json
  * @copyright  Copyright (c) 2005-2007 Zend Technologies USA Inc. (http://www.zend.com)
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
@@ -977,15 +986,6 @@
 {}
 
 /**
- * @category   Zend
- * @package    Zend
- * @copyright  Copyright (c) 2005-2007 Zend Technologies USA Inc. (http://www.zend.com)
- * @license    http://framework.zend.com/license/new-bsd     New BSD License
- */
-class Zend_Exception extends Exception
-{}
-
-/**
  * Class for encoding to and decoding from JSON.
  *
  * @category   Zend