diff --git a/reference/bbcode/functions/bbcode-create.xml b/reference/bbcode/functions/bbcode-create.xml index 57c5f6d3c2..5f311efee9 100644 --- a/reference/bbcode/functions/bbcode-create.xml +++ b/reference/bbcode/functions/bbcode-create.xml @@ -1,5 +1,5 @@ - + bbcode_create @@ -63,16 +63,16 @@ content_handling optional - - Gives the name of the function used as callback for modification - of the content - currently only supports functions not methods. + Gives the callback used for modification of the content. Object + Oriented Notation supported only since 0.10.1 callback prototype is string name(string $content, string $argument) param_handling optional - - Gives the name of the function used as callback for modification - of the argument - currently only supports functions not methods. + Gives the callback used for modification of the argument. Object + Oriented Notation supported only since 0.10.1 callback prototype is string name(string $content, string $argument) diff --git a/reference/bbcode/reference.xml b/reference/bbcode/reference.xml index 3d55191299..2a5cfa1022 100644 --- a/reference/bbcode/reference.xml +++ b/reference/bbcode/reference.xml @@ -1,5 +1,5 @@ - + BBCode Functions @@ -15,6 +15,9 @@ approach based on regular expressions. Further more, it helps provide valid HTML by reordering open / close tags and by automatically closing unclosed tags. + + Since 0.10.1 It supports argument quoting with single quotes, + double quotes and html escaped double quotes.