Author: earle Date: 2005-10-12 02:57:58 +0100 (Wed, 12 Oct 2005) New Revision: 691
Modified: trunk/templates/node.tt Log: fix RT #8852 (missing OS IE X/Y coords)
Modified: trunk/templates/node.tt =================================================================== --- trunk/templates/node.tt 2005-10-12 01:51:06 UTC (rev 690) +++ trunk/templates/node.tt 2005-10-12 01:57:58 UTC (rev 691) @@ -46,7 +46,7 @@ </form> </div> [% END %] -[% IF (latitude AND longitude) OR (os_x AND os_y) %] +[% IF (latitude AND longitude) OR (os_x AND os_y) OR (osie_x AND osie_y) %] <div id="coordinates"> [% END %] [% IF os_x AND os_y %] @@ -54,11 +54,16 @@ <small>OS Y co-ord: [% CGI.escapeHTML(os_y) %]</small> +[% ELSIF osie_x AND osie_y %] + <small>OS IE X co-ord: [% CGI.escapeHTML(osie_x) %]</small> + + <small>OS IE Y co-ord: [% CGI.escapeHTML(osie_y) %]</small> + [% END %] [% IF latitude AND longitude %] <small>(Latitude: [% latitude %] Longitude: [% longitude %])</small> [% END %] -[% IF (latitude AND longitude) OR (os_x AND os_y) %] +[% IF (latitude AND longitude) OR (os_x AND os_y) OR (osie_x AND osie_y)%] </div> [% END %] <div id="rdf_link">
openguides-commits@lists.openguides.org