Changeset 1304
- Timestamp:
- 03/13/2008 03:05:17 PM (18 years ago)
- Location:
- branches/0.8/bb-admin
- Files:
-
- 2 edited
-
class-install.php (modified) (1 diff)
-
install.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.8/bb-admin/class-install.php
r1292 r1304 544 544 'value' => '', 545 545 'label' => __('WordPress database secret:'), 546 'note' => __('This must match the value of the WordPress setting named "secret" in your WordPress installation. Look for the option labeled "secret" in this WordPress admin page - <a href="#" id="getSecretOption" onclick="window.open(this.href); return false;"></a>'),546 'note' => __('This must match the value of the WordPress setting named "secret" in your WordPress installation. Look for the option labeled "secret" in <a href="#" id="getSecretOption" onclick="window.open(this.href); return false;">this WordPress admin page</a>.'), 547 547 'prerequisite' => 'toggle_2_1' 548 548 ), -
branches/0.8/bb-admin/install.php
r1282 r1304 215 215 var outputAnchor = document.getElementById('getSecretOption'); 216 216 if (siteURLInputValue) { 217 outputAnchor.innerHTML = siteURLInputValue + 'wp-admin/options.php'; 217 if (siteURLInputValue.substr(-1,1) != '/') { 218 siteURLInputValue += '/'; 219 } 218 220 outputAnchor.href = siteURLInputValue + 'wp-admin/options.php'; 219 221 } else { 220 outputAnchor.innerHTML = '';221 222 outputAnchor.href = ''; 222 223 }
Note: See TracChangeset
for help on using the changeset viewer.