PHP 模式下的 Drupal CSS Injector 会产生错误

发布于 2024-10-21 15:10:35 字数 309 浏览 0 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北恋 2024-10-28 15:10:35

同时向模块的问题队列发布错误报告也不会造成伤害 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文