Changeset 1672 in ExiteCMS
- Timestamp:
- 08/21/08 23:29:09 (3 years ago)
- Location:
- modules/common/wiki/php-files/modules/wiki/actions
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/common/wiki/php-files/modules/wiki/actions/note.php
r1447 r1672 10 10 $width = htmlspecialchars($vars['width']); 11 11 12 if ( is_numeric($width) ? intval($width) == $width : false) {12 if (!is_numeric($width)) { 13 13 $width = "200"; 14 14 } -
modules/common/wiki/php-files/modules/wiki/actions/tip.php
r1447 r1672 10 10 $width = htmlspecialchars($vars['width']); 11 11 12 if ( is_numeric($width) ? intval($width) == $width : false) {12 if (!is_numeric($width)) { 13 13 $width = "200"; 14 14 } -
modules/common/wiki/php-files/modules/wiki/actions/warning.php
r1447 r1672 10 10 $width = htmlspecialchars($vars['width']); 11 11 12 if ( is_numeric($width) ? intval($width) == $width : false) {12 if (!is_numeric($width)) { 13 13 $width = "200"; 14 14 }
Note: See TracChangeset
for help on using the changeset viewer.
