#!/usr/bin/php
<?php
$from = '<?php if ( ! $has_tabs ) : ?>';
$to   = "<?php if ( ! \$has_tabs && ! \$fs->apply_filters( 'hide_account_tabs', false )) : ?>";

$file = 'freemius/templates/account.php';

$content = file_get_contents($file);

$content = str_replace($from, $to, $content);

if(file_put_contents('tmp', $content)){
	rename('tmp', $file);
}
