Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRouslan Placella <rouslan@placella.com>2012-06-06 16:17:42 +0400
committerRouslan Placella <rouslan@placella.com>2012-06-11 17:06:04 +0400
commita3d7a055ee2efaa5c1713642affb8ee9113d142d (patch)
tree9b849327ba1cefbf758bef1c70c2fb8ae66ea45a
parent796012fcc574215cf95e4fb631501d2b198c70e9 (diff)
Docblock fixes
-rw-r--r--libraries/Footer.class.php4
-rw-r--r--libraries/Header.class.php13
-rw-r--r--libraries/Response.class.php3
3 files changed, 15 insertions, 5 deletions
diff --git a/libraries/Footer.class.php b/libraries/Footer.class.php
index 5be2168c8d..5420abbc53 100644
--- a/libraries/Footer.class.php
+++ b/libraries/Footer.class.php
@@ -244,9 +244,9 @@ class PMA_Footer
}
/**
- *
+ * Disables the rendering of the footer
*
- * @return
+ * @return void
*/
public function disable()
{
diff --git a/libraries/Header.class.php b/libraries/Header.class.php
index f54a906b1a..e1c22b855b 100644
--- a/libraries/Header.class.php
+++ b/libraries/Header.class.php
@@ -101,6 +101,9 @@ class PMA_Header
* Whether the HTTP headers (and possibly some HTML)
* have already been sent to the browser
*
+ * FIXME: Shouldn't be static or public, but first
+ * need to remove references to it from the code base
+ *
* @access public
* @static
* @var bool
@@ -178,9 +181,9 @@ class PMA_Header
}
/**
- *
+ * Disables the rendering of the header
*
- * @return
+ * @return void
*/
public function disable()
{
@@ -435,6 +438,12 @@ class PMA_Header
return $retval;
}
+ /**
+ * If the page is missing the title, this function
+ * will set it to something reasonable
+ *
+ * @return string
+ */
private function _getPageTitle()
{
if (empty($this->_title)) {
diff --git a/libraries/Response.class.php b/libraries/Response.class.php
index e7b2923a3a..ede4ac1062 100644
--- a/libraries/Response.class.php
+++ b/libraries/Response.class.php
@@ -120,7 +120,8 @@ class PMA_Response
}
/**
- * FIXME
+ * Set the status of an ajax response,
+ * whether it is a success or an error
*
* @return void
*/