lib/ar/content/html.php 1 location
|
@@ 314-318 (lines=5) @@
|
311 |
|
} else if (isset($node['attribs']['contentEditable'])) { |
312 |
|
$contentEditable = "contentEditable"; |
313 |
|
} |
314 |
|
if ($contentEditable) { |
315 |
|
$node['attribs']['ar:editable'] = $node['attribs'][$contentEditable]; |
316 |
|
unset($node['attribs'][$contentEditable]); |
317 |
|
$result = true; |
318 |
|
} |
319 |
|
if ($node['attribs']['ar:type'] == "template") { |
320 |
|
$path = $me->make_path($node['attribs']['ar:path']); |
321 |
|
$template = $node['attribs']['ar:name']; |
lib/modules/mod_page.php 1 location
|
@@ 178-182 (lines=5) @@
|
175 |
|
} else if (isset($node['attribs']['contentEditable'])) { |
176 |
|
$contentEditable = "contentEditable"; |
177 |
|
} |
178 |
|
if ($contentEditable) { |
179 |
|
$node['attribs']['ar:editable'] = $node['attribs'][$contentEditable]; |
180 |
|
unset($node['attribs'][$contentEditable]); |
181 |
|
$result = true; |
182 |
|
} |
183 |
|
if ($node['attribs']['ar:type'] == "template") { |
184 |
|
$path = $node['attribs']['ar:path']; |
185 |
|
$template = $node['attribs']['ar:name']; |