Plugin Directory

Changeset 2291412


Ignore:
Timestamp:
04/25/2020 07:49:05 AM (6 years ago)
Author:
icdsoft
Message:

Fix more tags 1.1.4 - remove short tags

Location:
icdsoft-reseller-store/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • icdsoft-reseller-store/trunk/icd-hosting.php

    r2288329 r2291412  
    44 * Plugin URI: https://reseller.icdsoft.com
    55 * Description: This plugin allows you to add hosting order forms on your website, accept hosting service orders and payments from your customers, and then  have these orders opened on servers hosted by ICDSoft.
    6  * Version: 1.1.3
     6 * Version: 1.1.4
    77 * Author: ICDSoft Hosting
    88 * Author URI: https://icdsoft.com
     
    3737     * @var string
    3838     */
    39     public $version = '1.1.3';
     39    public $version = '1.1.4';
    4040
    4141    /**
  • icdsoft-reseller-store/trunk/includes/services/Payment.php

    r2110032 r2291412  
    1 <?
     1<?php
    22
    33namespace ICD\Hosting\Services;
  • icdsoft-reseller-store/trunk/lang/language/terms/en.php

    r2110032 r2291412  
    1 <?
     1<?php
    22return array(
    33    'hosting_terms' => '#### CONTENT
  • icdsoft-reseller-store/trunk/readme.txt

    r2288329 r2291412  
    55Tested up to: 5.4
    66Requires PHP: 5.4
    7 Stable tag: 1.1.3
     7Stable tag: 1.1.4
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    119119== Changelog ==
    120120
     121= 1.1.4 =
     122Fix - more short tags
     123
    121124= 1.1.3. =
    122125* Fix - remove shorttags
  • icdsoft-reseller-store/trunk/templates/compare_plans.php

    r2128474 r2291412  
    2424<br>
    2525<div class="card-deck mb-3 text-center">
    26     <?
     26    <?php
    2727    }
    2828    ?>
     
    5454                               'plan' => esc_attr( $plan['plan'] )
    5555                           ), true ) ?> " target="_self"><?php _e( 'Order', 'icd-hosting' ) ?></a>
    56                         <?
     56                        <?php
    5757                        echo '</li>';
    5858                    }
  • icdsoft-reseller-store/trunk/templates/request.php

    r2288329 r2291412  
    167167                                <select name="order[items][<?php echo esc_attr( $idx ) ?>][quantity]"
    168168                                        class="quantity form-control">
    169                                     <?
     169                                    <?php
    170170                                    foreach ( $i['packages'] as $p ) {
    171171                                        $price = $p * $i['prices'][ $i['period'] ]['price']; ?>
     
    233233                                    if ( in_array( $i['periodicity'], [ 'YR', 'MO' ] ) ) {
    234234                                        ?>
    235                                         <?php echo esc_html( $i['period'] ) ?><?
     235                                        <?php echo esc_html( $i['period'] ) ?><?php
    236236                                        if ( ! empty( $price['periodicity'] ) ) {
    237237                                            echo esc_html( $price['periodicity'] );
     
    371371                                             data-id="<?php echo esc_attr( $idx ) ?>"
    372372                                             data-period="<?php echo esc_attr( $i['period'] ) ?>">
    373                                             <?
     373                                            <?php
    374374                                            if ( $i['action'] == 'order' and ! empty( $i['hosting'] ) ) { ?>
    375375                                                <h4><?php echo icd_hosting_tr( 'request.item_hosting_subtitle' ) ?></h4>
     
    688688                                                                            <option value="<?php echo $ip ?>"
    689689                                                                                    <?php if ( $ip == $i['ssl']['ip'] ) {
    690                                                                                     ?>selected <?
     690                                                                                    ?>selected <?php
    691691                                                                            } ?>><?php echo esc_html( $ip ) ?></option>
    692692                                                                            <?php
     
    712712                                                                </select>
    713713                                                            </div>
    714                                                             <?
     714                                                            <?php
    715715
    716716                                                            if ( isset( $i['account_id'] ) ) { ?>
  • icdsoft-reseller-store/trunk/templates/show_plan_info.php

    r2128474 r2291412  
    2828                               'plan' => $plan
    2929                           ), true ) ?> " target="_self"><?php _e( 'Order', 'icd-hosting' ) ?></a>
    30                         <?
     30                        <?php
    3131                        echo '</li>';
    3232                    }
Note: See TracChangeset for help on using the changeset viewer.