欢迎各位兄弟 发布技术文章
这里的技术是共享的
| 息 | Notice: Undefined property: view::$feed_icon 在 views_export_xls_plugin_style_xls->attach_to() (行 43 在 /www/web/aaaaa_bbbb-admin_com/public_html/sites/all/modules/views_export_xls/views/views_export_xls_plugin_style_xls.inc). |
|---|

报这个警告 有补丁
diff --git a/views/views_export_xls_plugin_style_xls.inc b/views/views_export_xls_plugin_style_xls.inc
index 0ba6d60..cc9609f 100644
--- a/views/views_export_xls_plugin_style_xls.inc
+++ b/views/views_export_xls_plugin_style_xls.inc
@@ -40,6 +40,10 @@ class views_export_xls_plugin_style_xls extends views_plugin_style {
'title' => 'Export to xls',
);
$image = theme('image', $variables);
+
+ if (!isset($this->view->feed_icon)) {
+ $this->view->feed_icon = '';
+ }
$this->view->feed_icon .= l($image, $this->view->get_url(NULL, $path), $url_options);
}