Changeset 4292
- Timestamp:
- Oct 4, 2007, 2:34:42 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/trunk/setup/script/update03-for2.10alpha2-emoji_2.8to2.10.php
r4282 r4292 4 4 * @license http://www.php.net/license/3_01.txt PHP License 3.01 5 5 */ 6 7 set_time_limit(0); 8 9 echo "Begin converter.\n"; 6 10 7 11 require_once './config.inc.php'; … … 62 66 foreach ($target as $tablename => $fields) { 63 67 foreach ($fields as $fieldname) { 68 echo "Converting {$tablename}.{$fieldname}..."; 64 69 convert_emoji_format_2_8_to_2_10($tablename, $fieldname); 70 echo "done.\n"; 65 71 } 66 72 } 67 73 74 echo "Finish converter.\n"; 75 68 76 ?>
Note: See TracChangeset
for help on using the changeset viewer.