Bug 5582 Pass tag nums as a string to Doc Popup
Add quotes around tag number when calling doc popup Otherwise numbers with leading zeroes are interpreted as octal e.g. 020 returns doc for 016 Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
This commit is contained in:
parent
80641597e5
commit
782654d178
1 changed files with 1 additions and 1 deletions
|
@ -785,7 +785,7 @@ function unHideSubfield(index,labelindex) { // FIXME :: is it used ?
|
|||
<a href="#" tabindex="1" class="tagnum" title="<!-- TMPL_VAR NAME="tag_lib"--> - Click to Expand this Tag" onclick="ExpandField('tag_<!-- TMPL_VAR NAME="tag"-->_<!-- TMPL_VAR NAME='index' --><!-- TMPL_VAR NAME="random" -->'); return false;"><!-- TMPL_VAR NAME="tag" --></a>
|
||||
<!-- TMPL_ELSE -->
|
||||
<span class="tagnum" title="<!-- TMPL_VAR NAME="tag_lib" -->"><!-- TMPL_VAR NAME="tag" --><a
|
||||
onclick="PopupMARCFieldDoc(<!-- TMPL_VAR NAME="tag" -->, <!-- TMPL_VAR NAME="number" -->); return false;"> ?</a></span>
|
||||
onclick="PopupMARCFieldDoc('<!-- TMPL_VAR NAME="tag" -->', <!-- TMPL_VAR NAME="number" -->); return false;"> ?</a></span>
|
||||
<!-- /TMPL_IF -->
|
||||
<!-- TMPL_IF NAME="fixedfield" -->
|
||||
<input tabindex="1" class="indicator flat" type="text" style="display:none;" name="tag_<!-- TMPL_VAR NAME="tag" -->_indicator1_<!-- TMPL_VAR NAME='index'--><!-- TMPL_VAR name="random" -->" size="1" maxlength="1" value="<!-- TMPL_VAR NAME="indicator1" -->" />
|
||||
|
|
Loading…
Reference in a new issue