Changeset 7050 for trunk/src/includes/admin/converters/Invision.php
- Timestamp:
- 12/15/2019 11:52:57 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/Invision.php
r7014 r7050 542 542 private function to_char( $input ) { 543 543 $output = ''; 544 for ( $i = 0; $i < strlen( $input ); $i++ ) { 544 $length = strlen( $input ); 545 for ( $i = 0; $i < $length; $i++ ) { 545 546 $j = ord( $input[$i] ); 546 547 if ( ( $j >= 65 && $j <= 90 )
Note: See TracChangeset
for help on using the changeset viewer.