So I'm having this weird issue, the config for the appropriate line looks like this:
What's weird is the else statement is what it provisions with, even though I have the admin_password set in default settings.
Given the else statement works we know provisioning on the phone is working, it just doesn't appear to be pulling that admin password like I would expect.
XML:
<!-- # Admin password for web interface -->
<!-- # String: a-z, A-Z, 0-9 -->
{if isset($admin_password)}
<P2>{$admin_password}</P2>
{else}
<P2>{$mac|replace:'-':''}</P2>
{/if}
What's weird is the else statement is what it provisions with, even though I have the admin_password set in default settings.
Given the else statement works we know provisioning on the phone is working, it just doesn't appear to be pulling that admin password like I would expect.