diff options
Diffstat (limited to 'admin/cat_list.php')
-rw-r--r-- | admin/cat_list.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/admin/cat_list.php b/admin/cat_list.php index ae957792d..050b7c06a 100644 --- a/admin/cat_list.php +++ b/admin/cat_list.php @@ -307,6 +307,13 @@ foreach ($categories as $category) $tpl_cat['U_DELETE'] = $self_url.'&delete='.$category['id']; $tpl_cat['U_DELETE'].= '&pwg_token='.get_pwg_token(); } + else + { + if ($conf['enable_synchronization']) + { + $tpl_cat['U_SYNC'] = $base_url.'site_update&site=1&cat_id='.$category['id']; + } + } if ( array_key_exists($category['id'], $categories_with_images) ) { |