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/TODO
diff options
context:
space:
mode:
authormatthieu_ <matthieu_@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2007-07-30 21:37:46 +0400
committermatthieu_ <matthieu_@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2007-07-30 21:37:46 +0400
commit906e61aafe9ff1ff73b16c3738dd00d6d8bfbdd2 (patch)
tree1e1929fa7c09dee753344cb61245c4f964e763e1 /TODO
parent2157033b8b6a5aeeecad81dd0b094cbfd76a523b (diff)
- logging system DONE
- fixed bug Access - input filtering functions
Diffstat (limited to 'TODO')
-rw-r--r--TODO22
1 files changed, 21 insertions, 1 deletions
diff --git a/TODO b/TODO
index f43ad4eede..d3d16b7e6f 100644
--- a/TODO
+++ b/TODO
@@ -6,4 +6,24 @@ FEATURES
BUGS
====
- the token md5 generation doesn't check that the md5 generated is unique,
- but it should (the field is unique in the database) \ No newline at end of file
+ but it should (the field is unique in the database)
+- if elements from the config file are deleted, bug without any notice or warning
+ system for config file default values?
+- if the path necessary sometimes in the configuration do not have a / when they should
+ it could break the system...
+ /*
+ * Make sure the compare directory has a trailing slash so that /tmp doesn't
+ * accidentally match /tmpfoo
+ */
+ if ($element{strlen($element)-1} != $slash) {
+ $element .= $slash;
+ }
+
+TODO MISC
+=========
+- tell zend that the attributes in Zend_Log have to be PROTECTED
+- tell zend_log the test on fwrite===false
+
+NOTES
+=====
+- edited zend_log and changed attr to protected \ No newline at end of file