Ticket #1593: 1593_2.patch
File 1593_2.patch, 2.3 KB (added by , 15 years ago) |
---|
-
_samples/asp/sampleposteddata.asp
44 44 For Each sForm in Request.Form 45 45 %> 46 46 <tr> 47 <td valign="top" nowrap><b><%=sForm%></b></td>48 <td width="100%" style="white-space:pre"><%=Server.HTMLEncode( Request.Form(sForm) )%></td>47 <td><b><%=sForm%></b></td> 48 <td><%=Server.HTMLEncode( Request.Form(sForm) )%></td> 49 49 </tr> 50 50 <% Next %> 51 51 </table> -
_samples/php/sampleposteddata.php
55 55 56 56 ?> 57 57 <tr> 58 <td valign="top" nowrap><b><?=$sForm?></b></td>59 <td width="100%" style="white-space:pre"><?=$postedValue?></td>58 <td><b><?=$sForm?></b></td> 59 <td><?=$postedValue?></td> 60 60 </tr> 61 61 <?php 62 62 } -
_samples/sample.css
21 21 * Styles used in the samples pages. 22 22 */ 23 23 24 body, td,input, select, textarea24 body, input, select, textarea 25 25 { 26 26 font-size: 12px; 27 27 font-family: Arial, Verdana, Sans-Serif; … … 48 48 white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ 49 49 word-wrap: break-word; /* Internet Explorer 5.5+ */ 50 50 } 51 td 52 { 53 font-size: 12px; 54 font-family: Arial, Verdana, Sans-Serif; 55 table-layout: width: 100%; 56 57 } 58 No newline at end of file -
_whatsnew.html
45 45 <p> 46 46 Fixed Bugs:</p> 47 47 <ul> 48 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1593">#1593</a>] Samplepostdata in html,php 49 and asp examples will now properly wrap the text.</li> 48 50 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/768">#768</a>] It is no longer possible 49 51 for an image to have its width and height defined with both HTML attributes and inline CSS 50 52 styles in IE.</li>