(the field last_modified). It might be a difference between postgresql and mysql.
I have fixed it by doing the following. I added the following code:
Code: Select all
[dmg@ti include]$ diff plugin_api.inc.php plugin_api.inc.php~
470,476d469
<
< if (isset($pluginFile)) {
< $lastModified = 0;filemtime($pluginFile);
< } else {
< $lastModified = 0;
< }
<
492c485
< 'last_modified' => $lastModified
---
> 'last_modified' => filemtime($pluginFile)