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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/libs/HTML
diff options
context:
space:
mode:
authormatthieu_ <matthieu_@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2007-09-20 17:23:44 +0400
committermatthieu_ <matthieu_@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2007-09-20 17:23:44 +0400
commit9826a7b5b070707242ee4c055ac127daae27e207 (patch)
tree515a13ebce62ef8af5cb9dd342ed4c2db4063176 /libs/HTML
parent3e7db635b03fbb124f1aa766e6aaa7b524869c5c (diff)
Implemented the Installation process
needs testing :-)
Diffstat (limited to 'libs/HTML')
-rwxr-xr-xlibs/HTML/QuickForm.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/HTML/QuickForm.php b/libs/HTML/QuickForm.php
index 33a3dc817a..731396c2e6 100755
--- a/libs/HTML/QuickForm.php
+++ b/libs/HTML/QuickForm.php
@@ -1960,7 +1960,7 @@ class HTML_QuickForm extends HTML_Common
* @return bool whether $value is an error
* @static
*/
- function isError($value)
+ static function isError($value)
{
return (is_object($value) && is_a($value, 'html_quickform_error'));
} // end func isError
@@ -1976,7 +1976,7 @@ class HTML_QuickForm extends HTML_Common
* @return string error message
* @static
*/
- function errorMessage($value)
+ static function errorMessage($value)
{
// make the variable static so that it only has to do the defining on the first call
static $errorMessages;