Pre-actions on system controller call, file cache delete function now support asterisk (*) as wildcard character, sqlsrv driver bugfix, image class bugfix, url class bugfix

v1.5 1.5.1
Bruno O. Notario 4 years ago
parent f16eefd910
commit a0af7bd98d
  1. 2
      README.md
  2. 8
      system/caches/caches.php
  3. 5
      system/database/autoload.php
  4. 8
      system/database/database/sqlsrv.php
  5. 4
      system/database/library/db.php
  6. 2
      system/engine/VERSION
  7. 22
      system/engine/autoload.php
  8. 2
      system/engine/document.php
  9. 40
      system/image/autoload.php
  10. 2
      system/mail/autoload.php
  11. 13
      system/system.php
  12. 3
      system/url/autoload.php

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1,8 +1,9 @@
<?php <?php
define('DIR_DATABASE', (__DIR__)."/database/"); if(!defined('DIR_DATABASE'))
define('DIR_DATABASE', (__DIR__)."/");
include __DIR__."/library/db.php"; include DIR_DATABASE."/library/db.php";
if(defined('DB_DRIVER')) { if(defined('DB_DRIVER')) {
global $db; global $db;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1,3 +1,3 @@
<?php <?php
include __DIR__.'/mail.php'; include DIR_SYSTEM.'mail/mail.php';

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save