File: /home/fastshipsa/public_html/wp-content/plugins/formidable-registration/views/update_database.php
<div class="error" id="frmreg_install_message">
<p>
<?php
printf(
esc_html__( 'Your Formidable Registration database needs to be updated.%1$sPlease deactivate and reactivate the plugin or %2$sUpdate Now%3$s', 'frmreg' ),
'<br/>',
'<a id="frmreg_install_link" href="javascript:frmreg_install_now()">',
'</a>'
);
?>
</p>
</div>
<script type="text/javascript">
function frmreg_install_now(){
jQuery('#frmreg_install_link').replaceWith('<img src="<?php echo esc_url_raw( $url ); ?>/images/wpspin_light.gif" alt="<?php esc_attr_e( 'Loading…' ); ?>" />');
jQuery.ajax({type:'POST',url:"<?php echo esc_url_raw( admin_url( 'admin-ajax.php' ) ); ?>",data:'action=frmreg_install',
success:function(msg){jQuery("#frmreg_install_message").fadeOut('slow');}
});
};
</script>