... |
... |
@@ -33,7 +33,7 @@ |
33 |
33 |
#set ($property = "$!{xcontext.macro.params.property}") |
34 |
34 |
#set ($object = $numbertool.toNumber("$!{xcontext.macro.params.object}").intValue()) |
35 |
35 |
#if ("$!{object}" != $!{xcontext.macro.params.object}) |
36 |
|
- #set ($object = ${targetdoc.getObject($classname).number}) |
|
36 |
+ #set ($object = ${doc.getObject($classname).number}) |
37 |
37 |
#if ("$!{object}" == '') |
38 |
38 |
#set ($object = 0) |
39 |
39 |
#end |
... |
... |
@@ -94,7 +94,7 @@ |
94 |
94 |
#set ($savemode = 'form') |
95 |
95 |
#end |
96 |
96 |
|
97 |
|
-#set ($propValue = "$!{targetdoc.getObject($classname, $object).getProperty($property).value}") |
|
97 |
+#set ($propValue = "$!{doc.getObject($classname, $object).getProperty($property).value}") |
98 |
98 |
## |
99 |
99 |
|
100 |
100 |
#macro (attachmentPicker_displayAttachment $name $displayImage $withLink $forceElement) |
... |
... |
@@ -123,7 +123,7 @@ |
123 |
123 |
#if ($displayImage) |
124 |
124 |
(% class="$!{cssClass}#if (!$attachment) hidden#end" %)(((#if ("$!{attachmentResource}" != '' || $forceElement)#if($withLink)[[#end[[image:$services.rendering.escape(${attachmentResource}, 'xwiki/2.1')$!{imageParams}]]#if($withLink)>>attach:$services.rendering.escape(${attachmentResource},'xwiki/2.1')||rel=lightbox]]#{end}#end)))## |
125 |
125 |
#else |
126 |
|
- (% class="$!{cssClass}" %)#if ("$!{attachmentResource}" != '' || $forceElement)#if ($withLink)[[attach:${attachmentResource}||rel=__blank]]#{else}(% class="displayed" %)#if($targetPermView)$!{services.rendering.escape($!{attachmentName}, 'xwiki/2.1')}#{else}Access Denied#{end}(% %)#{end}#end(%%)## |
|
126 |
+ (% class="$!{cssClass}" %)#if ("$!{attachmentResource}" != '' || $forceElement)#if ($withLink)[[attach:${attachmentResource}||rel=__blank]]#{else}(% class="displayed" %)#if($targetPermView)$services.rendering.escape($!{attachmentName}, 'xwiki/2.1')#{else}Access Denied#{end}(% %)#{end}#end(%%)## |
127 |
127 |
#end |
128 |
128 |
#end |
129 |
129 |
|
... |
... |
@@ -159,7 +159,7 @@ |
159 |
159 |
#elseif ($xcontext.action == 'inline' || $xcontext.action == 'edit') |
160 |
160 |
(% class="attachment-picker" %)(((## |
161 |
161 |
#attachmentPicker_displayAttachment($propValue $displayImage false true) #attachmentPicker_displayButton()## |
162 |
|
- {{html}}<input type="hidden" name="$escapetool.xml("${classname}_${object}_${property}")" value="$escapetool.xml("${propValue}")" class="property-reference"/>{{/html}}## |
|
162 |
+ {{html}}<input type="hidden" name="${classname}_${object}_${property}" value="${propValue}" class="property-reference"/>{{/html}}## |
163 |
163 |
))) |
164 |
164 |
#else |
165 |
165 |
#attachmentPicker_displayAttachment($propValue $displayImage $link false) |