-
Notifications
You must be signed in to change notification settings - Fork 18
/
NEWS
48 lines (35 loc) · 1.23 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
1.2.3
-----
* fix typo in varname in tinymvc_load file
1.2.2
-----
* fix test for existing model when loading (forum topic 329)
* if PATH_INFO and PATH_INFO_ORIG are not present, do not throw notice
* change default PDO charset from UTF-8 to utf8
1.2.1
-----
* PATH_INFO first, otherwise ORIG_PATH_INFO (mohrt, dangerdan)
* add "dsn" database config property as valid dsn
* fix bug with page timer periodically negative number
* fix uri library to include all segments, including controller/action
1.2
---
* converted error handling to exceptions
* mvc system now wrapped in bootstrap object
* added root_controller and root_action config settings
to force the root controller/action regardless of url
* unknown actions now fall back to the default_action setting in config
* php default spl_autoload now used for all plugins
1.1
---
* allow multiple database connection handlers
* add active record features to database model
* replace trigger_error() with exception handler
* throw exception if database.php is not found.
1.0.1
-----
* add view controller so view loading worsk as $this->view->display() like in the docs (mohrt)
* use try/catch for controller method execution so __call can be utilized (areazero, mohrt)
1.0
---
initial release