Changeset 764
- Timestamp:
- 12/16/2012 07:53:04 AM (5 months ago)
- Location:
- trunk/WordPress/plugin/transposh
- Files:
-
- 2 edited
-
core/constants.php (modified) (1 diff)
-
transposh.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WordPress/plugin/transposh/core/constants.php
r750 r764 171 171 //Define segment id prefix, will be included in span tag. also used as class identifier 172 172 define('SPAN_PREFIX', 'tr_'); 173 174 //The name of our admin page175 define('TRANSPOSH_ADMIN_PAGE_NAME', 'transposh');176 173 177 174 //Our text domain -
trunk/WordPress/plugin/transposh/transposh.php
r755 r764 4 4 Plugin Name: Transposh Translation Filter 5 5 Plugin URI: http://transposh.org/ 6 Description: Translation filter for WordPress, After enabling please set languages at the <a href=" options-general.php?page=transposh">the options page</a> Want to help? visit our development site at <a href="http://trac.transposh.org/">trac.transposh.org</a>.6 Description: Translation filter for WordPress, After enabling please set languages at the <a href="admin.php?page=tp_main">the options page</a> Want to help? visit our development site at <a href="http://trac.transposh.org/">trac.transposh.org</a>. 7 7 Author: Team Transposh 8 8 Version: %VERSION% … … 580 580 unset($wp->query_vars[LANG_PARAM]); 581 581 unset($wp->query_vars[EDIT_PARAM]); 582 tp_logger("edit mode: " . ( $this->edit_mode) ? 'enabled' : 'disabled', 2);582 tp_logger("edit mode: " . (($this->edit_mode) ? 'enabled' : 'disabled'), 2); 583 583 } 584 584 … … 919 919 function plugin_action_links($links) { 920 920 tp_logger('in plugin action', 5); 921 return array_merge(array('<a href="' . admin_url(' options-general.php?page=' . TRANSPOSH_ADMIN_PAGE_NAME) . '">' . __('Settings') . '</a>'), $links);921 return array_merge(array('<a href="' . admin_url('admin.php?page=tp_main') . '">' . __('Settings') . '</a>'), $links); 922 922 } 923 923
Note: See TracChangeset
for help on using the changeset viewer.
