Plugin Directory

Changeset 2192220


Ignore:
Timestamp:
11/13/2019 09:20:39 PM (6 years ago)
Author:
yoprogramo
Message:

For version WP 5.3 new default button

Location:
nomorepass-forget-your-passwords/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • nomorepass-forget-your-passwords/trunk/nomorepass.php

    r2192156 r2192220  
    55Description: Plugin to allow login using NoMorePass app
    66Author: Jose A. Espinosa
    7 Version: 1.9.2
     7Version: 1.9.3
    88Author URI: https://www.yoprogramo.com
    99Text Domain: nomorepass
     
    127127        <?php
    128128            $options = get_option('nomorepass-custom-logo');
    129             $default_image = plugins_url('public/images/ico-36.png', __FILE__);
     129            $default_image = plugins_url('public/images/button.png', __FILE__);
    130130            if ( !empty( $options ) ) {
    131131                $image_attributes = wp_get_attachment_image_src( $options, array( 36, 36 ) );
     
    138138        ?>
    139139            <div class="upload">
    140             <img data-src="<?php echo $default_image;?>" src="<?php echo $src;?>" width="36px" height="36px" />
     140            <img data-src="<?php echo $default_image;?>" src="<?php echo $src;?>" height="36px" />
    141141                <div>
    142142                    <input type="hidden" name="nomorepass-custom-logo" id="nomorepass-custom-logo" value="<?php echo $value?>" />
     
    379379            </p>
    380380            <p style="display: block;width: 100%;text-align: center;">
    381             <a href="javascript:sendpassword()"><img src="<?php echo plugins_url('public/images/ico-36.png', __FILE__)?>" title="<?php echo __('Send to NoMorePass','nomorepass')?>" /></a></p>
     381            <a href="javascript:sendpassword()"><img src="<?php echo plugins_url('public/images/button.png', __FILE__)?>" title="<?php echo __('Send to NoMorePass','nomorepass')?>" /></a></p>
    382382            <?php NoMorePass::paintQr();?>
    383383            <script>
     
    461461    public static function getLogoSrc() {
    462462        $options = get_option('nomorepass-custom-logo');
    463         $default_image = plugins_url('public/images/ico-36.png', __FILE__);
     463        $default_image = plugins_url('public/images/button.png', __FILE__);
    464464        if ( !empty( $options ) ) {
    465465            $image_attributes = wp_get_attachment_image_src( $options, array( 36, 36 ) );
  • nomorepass-forget-your-passwords/trunk/readme.txt

    r2192156 r2192220  
    55Requires at least: 3.5
    66Tested up to: 5.3
    7 Stable tag: 1.9.2
     7Stable tag: 1.9.3
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.