Jonathan Hernandez
Jaws 0.5.4 released
This release fix the bugs introduced by 0.5.3.
The problem was that we do in some cases concatenations in this way:
require_once "{$GLOBALS["path"]}gadgets/foo.php";
Due the previous fix, it changes to:
require_once "{JAWS_PATH}gadgets/foo.php";
But must be:
require_once JAWS_PATH."gadgets/foo.php";
Sorry for our ephemeral 0.5.3 release.
The problem was that we do in some cases concatenations in this way:
require_once "{$GLOBALS["path"]}gadgets/foo.php";
Due the previous fix, it changes to:
require_once "{JAWS_PATH}gadgets/foo.php";
require_once JAWS_PATH."gadgets/foo.php";
Sorry for our ephemeral 0.5.3 release.
Jaws 0.5.3 released
This release fix the remote file inclusion.
To upgrade from 0.5.x just replace your files and edit your include/JawsConfig.php
Where says:
$GLOBALS["path"] = substr(dirname(__FILE__),0,-7);
Change for this:
define('JAWS_PATH', substr(dirname(__FILE__),0,-7));
To upgrade from 0.5.x just replace your files and edit your include/JawsConfig.php
Where says:
$GLOBALS["path"] = substr(dirname(__FILE__),0,-7);
Change for this:
define('JAWS_PATH', substr(dirname(__FILE__),0,-7));
Jaws 0.5.2 released
This release upgrade XMLRPC PHP library to 1.1.1 to fix a code injection vulnerability found by GulfTech.
Jaws 0.5-beta2 released
This is the second beta release of our upcoming 0.5 version, many
bugs have been fixed. Remember that these beta releases are just focused
in translation and bug fixes.
Remember that this version is only for testing!
Below is a brief changelog:
bugs have been fixed. Remember that these beta releases are just focused
in translation and bug fixes.
Remember that this version is only for testing!
Below is a brief changelog:
- Some cleanup to old code
- Small fixes (RssReader, Weather, Blog, etc)
- Move getText (_()) to Jaws translation system (_t) of some files
- Plugins are working fine, they don't get scrambled
- We have a new upgrade script
Jaws 0.5-beta1 released
This is a beta release of our upcoming 0.5 version, many things improved and must be tested out with the beta release.