diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-07-26 08:25:25 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-07-26 08:25:25 +0000 |
commit | a43f3aef14a46bc8f64c457a0a76de8c78bd8b3e (patch) | |
tree | 10615ff422087f68f0548c61c9f12ca21fe29836 /modules | |
parent | cbb8ea04dee2906166a64503971ac44c7a62c038 (diff) | |
download | brdo-a43f3aef14a46bc8f64c457a0a76de8c78bd8b3e.tar.gz brdo-a43f3aef14a46bc8f64c457a0a76de8c78bd8b3e.tar.bz2 |
#75186 by pwolanin, invalidate the cache on saving via the node admin page.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/node/node.module | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index b82658d4a..7d0749e3a 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -1098,6 +1098,7 @@ function node_admin_nodes_submit($form_id, $edit) { db_query($operation, $nid); } } + cache_clear_all(); drupal_set_message(t('The update has been performed.')); } } |