Uploaded image for project: 'Blesta Core'
  1. Blesta Core
  2. CORE-3604

Import Manager: Decode WHMCS package option data

    Details

    • Type: Improvement
    • Status: Closed
    • Priority: Major
    • Resolution: Fixed
    • Affects Version/s: None
    • Fix Version/s: 4.10.0-b1
    • Component/s: None
    • Labels:
      None

      Description

      Change line 1146 from:

                      'name' => $option_group->name,
      

      to:

                      'name' => $this->decode($option_group->name),
      

      Change line 1147 from:

                      'description' => $option_group->description,
      

      to:

                      'description' => $this->decode($option_group->description),
      

      Change 1164 from:

                              'name' => $value->optionname,
      

      to:

                              'name' => $this->decode($value->optionname),
      

      Change 1165 from:

                              'value' => $is_qty ? null : $value->optionname,
      

      to:

                              'value' => $is_qty ? null : $this->decode($value->optionname),
      

      Change 1178 from:

                              'label' => $option->optionname,
      

      to:

                              'label' => $this->decode($option->optionname),
      

      Change 1179 from:

                              'name' => $option->optionname,
      

      to:

                              'name' => $this->decode($option->optionname),
      

        Activity

        There are no comments yet on this issue.

          People

          • Assignee:
            jonathan Jonathan Reissmueller
            Reporter:
            jonathan Jonathan Reissmueller
          • Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

            • Created:
              Updated:
              Resolved:
              Fix Release Date:
              7/May/20

              Time Tracking

              Estimated:
              Original Estimate - Not Specified
              Not Specified
              Remaining:
              Remaining Estimate - 0 minutes
              0m
              Logged:
              Time Spent - 1 hour, 3 minutes
              1h 3m

                Agile