Revision af0edce6
Added by Steve Beaver about 7 years ago
src/usr/local/www/services_acb.php | ||
---|---|---|
63 | 63 |
$myhostname = $config['system']['hostname'] . "." . $config['system']['domain']; |
64 | 64 |
|
65 | 65 |
if (!$decrypt_password) { |
66 |
Header("Location: /services+acb_settings.php");
|
|
66 |
Header("Location: /services_acb_settings.php");
|
|
67 | 67 |
exit; |
68 | 68 |
} |
69 | 69 |
|
... | ... | |
321 | 321 |
|
322 | 322 |
$data = curl_exec($curl_session); |
323 | 323 |
|
324 |
if (!curl_errno($curl_session)) {
|
|
324 |
if (curl_errno($curl_session)) { |
|
325 | 325 |
$fd = fopen("/tmp/acb_backupdebug.txt", "w"); |
326 | 326 |
fwrite($fd, $get_url . "" . "action=showbackups" . "\n\n"); |
327 | 327 |
fwrite($fd, $data); |
... | ... | |
600 | 600 |
$legacyready = "yes"; |
601 | 601 |
} |
602 | 602 |
|
603 |
$legacynotready = "Please configure your \"Gold\" membershipt settings on the Settings page " . |
|
604 |
"before accessing the legacy backup features"; |
|
603 |
$legacynotready = gettext("Please configure your \"Gold\" membershipt settings on the Settings page " .
|
|
604 |
"before accessing the legacy backup features");
|
|
605 | 605 |
?> |
606 | 606 |
|
607 | 607 |
<script type="text/javascript"> |
Also available in: Unified diff
Add gettext() and other cosmetic changes