PHP 模式下的 Drupal CSS Injector 会产生错误
我在 Drupal 6 站点上有一系列要注入的样式(用于 iPad 修复)。我在 PHP 模式下使用 CSS Injector 模块。确定是否显示样式的代码如下:
<?php
if (strpos($_SERVER['HTTP_USER_AGENT'], 'iPad')) {
return TRUE;
} else {
return FALSE;
}
?>
当我点击“保存”时,出现 Drupal 错误。我在这里做错了什么?我的代码中是否有一些我没有看到的古怪内容?
I've got a series of styles to inject (for an iPad fix) on a Drupal 6 site. I'm using the CSS Injector module in PHP-mode. The code to determine whether the styles get displayed is as follows:
<?php
if (strpos($_SERVER['HTTP_USER_AGENT'], 'iPad')) {
return TRUE;
} else {
return FALSE;
}
?>
When I hit save, I get a Drupal error. What am I doing wrong here? Is there something wacky in my code that I'm not seeing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
同时向模块的问题队列发布错误报告也不会造成伤害 http://drupal .org/project/issues/css_injector?categories=All
also posting an error report to the issue queue for the module wouldn't hurt http://drupal.org/project/issues/css_injector?categories=All