Author Topic: change function strtoupper to mb_strtoupper  (Read 3121 times)

sergeyspb

  • Newbie
  • *
  • Posts: 11
    • View Profile
change function strtoupper to mb_strtoupper
« on: June 29, 2009, 10:55:58 am »
Please change function

file: opengoo\application\views\reporting\total_task_times.php
This code:
Code: [Select]
<?php echo strtoupper(lang("total")) . ": " DateTimeValue::FormatTimeDiff(new DateTimeValue(0), new DateTimeValue($sumTime 60), "hm"60?>
Change to:
Code: [Select]
<?php echo mb_strtoupper(lang("total"),"utf-8") . ": " DateTimeValue::FormatTimeDiff(new DateTimeValue(0), new DateTimeValue($sumTime 60), "hm"60?>
« Last Edit: June 29, 2009, 12:34:53 pm by sergeyspb »