OSDN Git Service

#18384 - Missing constructor.
authormumin <mumincacao@users.sourceforge.jp>
Sun, 23 Aug 2009 11:25:55 +0000 (20:25 +0900)
committermumin <mumincacao@users.sourceforge.jp>
Sun, 23 Aug 2009 11:25:55 +0000 (20:25 +0900)
documents/changes.en.txt
documents/changes.ja.txt
public_html/core/XCube_Identity.class.php
public_html/core/XCube_RenderSystem.class.php
public_html/modules/legacy/kernel/Legacy_CacheInformation.class.php
public_html/modules/user/class/ActionFrame.class.php

index 8001104..e6e4aa8 100644 (file)
@@ -1,3 +1,4 @@
+#18384 - Missing constructor.
 #18187 - Remove help action.
 #17863 - Constructor has not compatibility at 5.2.x and 5.3.x.
 #18109 - Remove soap service files.
index 3a86ca2..8d3661c 100644 (file)
@@ -1,3 +1,4 @@
+#18384 - \90e\82­\82ç\82·\82Ì\82±\82ñ\82·\82Æ\82ç\82­\82½\82ð\8fÁ\82µ\82½\82ç\93{\82ç\82ê\82½\82Ì\82Å\95\9c\8b\8c
 #18187 - \82Ö\82é\82Õ\8b@\94\\82ð\8dí\8f\9c
 #17863 - 5.3 \8cn\82Å\82Í\82­\82ç\82·\96¼\82±\82ñ\82·\82Æ\82ç\82­\82½\82Ì\93®\8dì\82ª\95Ï\82í\82Á\82Ä\82½\82Ì\82Å\8fC\90³
 #18109 - SOAP \82³\81[\82Ñ\82·\8aÖ\98A\82Ì\82Ó\82\9f\82¢\82é\82ð\8dí\8f\9c
index b38dab5..a2bc248 100644 (file)
@@ -25,6 +25,10 @@ class XCube_Identity
         */
        var $_mAuthenticationType = "";
        
+    function __construct()
+    {
+    }
+    
        /**
         * Sets the authentication type.
         * @param string $type
index ed33d65..6f8400e 100644 (file)
@@ -49,6 +49,10 @@ class XCube_RenderTarget
        
        var $mCacheTime = null;
 
+    function __construct()
+    {
+    }
+
        function setName($name)
        {
                $this->mName = $name;
@@ -148,6 +152,10 @@ class XCube_RenderSystem
 
        var $mRenderMode = XCUBE_RENDER_MODE_NORMAL;
        
+    function __construct()
+    {
+    }
+    
        /**
         * Prepare.
         *
index 0dcbf36..89b1961 100644 (file)
@@ -54,6 +54,10 @@ class Legacy_AbstractCacheInformation
         */
        var $mAttributes = array();
        
+    function __construct()
+    {
+    }
+    
        /**
         * Gets a value indicating whether someone has tried to set a flag to this
         * object.
index 0669a7b..ba46fe5 100644 (file)
@@ -144,6 +144,10 @@ class User_ActionFrame
 
 class User_Action
 {
+    function __construct()
+    {
+    }
+    
        function isSecure()
        {
                return false;