将b64图像支持添加到HTML Purifier的默认白名单

时间:2018-05-17 15:20:37

标签: php html htmlpurifier

如何将b64图像支持添加到默认白名单?

像这样添加b64图像支持:

//inside the Main activity
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    //Intent has different id here, e.g. @5850
    Intent i = getIntent();
    // intent.getSerializableExtra("someClass")  returns null
    //...
}

有效,但它也会重置整个默认白名单。

所以,我的问题是:有没有办法将$config->set('URI.AllowedSchemes', array('data' => true)); 添加到默认白名单?以某种方式使用'URI.AllowedSchemes', array('data' => true)

0 个答案:

没有答案