diff options
author | Silvio <s1lv10@uol.com.br> | 2010-09-20 11:32:07 -0300 |
---|---|---|
committer | Silvio <s1lv10@uol.com.br> | 2010-09-20 11:32:07 -0300 |
commit | 504341d67c0887d4d496465ab0ed052be46c6390 (patch) | |
tree | 07d82abee707c1fad77b26eb1c10271452a7bb30 /lib | |
parent | d83e9aa42cb479786185eaec715a7c0a8108f912 (diff) | |
download | sf_isis_importer_plugin-504341d67c0887d4d496465ab0ed052be46c6390.tar.gz sf_isis_importer_plugin-504341d67c0887d4d496465ab0ed052be46c6390.tar.bz2 |
Freeing stats after save
Diffstat (limited to 'lib')
-rw-r--r-- | lib/sfIsisImporterStats.class.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/sfIsisImporterStats.class.php b/lib/sfIsisImporterStats.class.php index 21f2757..bea264d 100644 --- a/lib/sfIsisImporterStats.class.php +++ b/lib/sfIsisImporterStats.class.php @@ -42,6 +42,7 @@ class sfIsisImporterStats $stats->count = 1; $stats->type = 'param'; $stats->save(); + $stats->free(true); } } @@ -58,6 +59,7 @@ class sfIsisImporterStats $stats->payload = $name; $stats->type = $function; $stats->save(); + $stats->free(true); } /** |