Changeset 2192220
- Timestamp:
- 11/13/2019 09:20:39 PM (6 years ago)
- Location:
- nomorepass-forget-your-passwords/trunk
- Files:
-
- 2 edited
-
nomorepass.php (modified) (5 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
nomorepass-forget-your-passwords/trunk/nomorepass.php
r2192156 r2192220 5 5 Description: Plugin to allow login using NoMorePass app 6 6 Author: Jose A. Espinosa 7 Version: 1.9. 27 Version: 1.9.3 8 8 Author URI: https://www.yoprogramo.com 9 9 Text Domain: nomorepass … … 127 127 <?php 128 128 $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__); 130 130 if ( !empty( $options ) ) { 131 131 $image_attributes = wp_get_attachment_image_src( $options, array( 36, 36 ) ); … … 138 138 ?> 139 139 <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" /> 141 141 <div> 142 142 <input type="hidden" name="nomorepass-custom-logo" id="nomorepass-custom-logo" value="<?php echo $value?>" /> … … 379 379 </p> 380 380 <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> 382 382 <?php NoMorePass::paintQr();?> 383 383 <script> … … 461 461 public static function getLogoSrc() { 462 462 $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__); 464 464 if ( !empty( $options ) ) { 465 465 $image_attributes = wp_get_attachment_image_src( $options, array( 36, 36 ) ); -
nomorepass-forget-your-passwords/trunk/readme.txt
r2192156 r2192220 5 5 Requires at least: 3.5 6 6 Tested up to: 5.3 7 Stable tag: 1.9. 27 Stable tag: 1.9.3 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.