edd-theme-updater
edd-theme-updater copied to clipboard
Variable inside gettext function.
There is variable as a first parameter of a gettext function. <?php esc_attr_e( $strings['deactivate-license'] ); ?>.
No big deal but should we just echo the license string and the variable can be inside esc_attr. Something like this:
<?php echo esc_attr( $strings['deactivate-license'] ); ?>
Any comments on this one?