Title: Dan Griffiths's Replies | WordPress.org

---

# Dan Griffiths

  [  ](https://wordpress.org/support/users/ghost1227/)

 *   [Profile](https://wordpress.org/support/users/ghost1227/)
 *   [Topics Started](https://wordpress.org/support/users/ghost1227/topics/)
 *   [Replies Created](https://wordpress.org/support/users/ghost1227/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/ghost1227/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/ghost1227/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/ghost1227/engagements/)
 *   [Favorites](https://wordpress.org/support/users/ghost1227/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 99 total)

1 [2](https://wordpress.org/support/users/ghost1227/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/ghost1227/replies/page/3/?output_format=md)…
[5](https://wordpress.org/support/users/ghost1227/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/ghost1227/replies/page/6/?output_format=md)
[7](https://wordpress.org/support/users/ghost1227/replies/page/7/?output_format=md)
[→](https://wordpress.org/support/users/ghost1227/replies/page/2/?output_format=md)

 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Username Changer] Promising, but very sad UX decisions](https://wordpress.org/support/topic/promising-but-very-sad-ux-decisions/)
 *  [Dan Griffiths](https://wordpress.org/support/users/ghost1227/)
 * (@ghost1227)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/promising-but-very-sad-ux-decisions/#post-8644565)
 * Finally caught up with the times and integrated with the user profile page!
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Username Changer] Does exactly what it says it does](https://wordpress.org/support/topic/does-exactly-what-it-says-it-does-18/)
 *  [Dan Griffiths](https://wordpress.org/support/users/ghost1227/)
 * (@ghost1227)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/does-exactly-what-it-says-it-does-18/#post-8644562)
 * Hey Michael! Latest version (3.0.0) now allows changing usernames directly from
   profile pages!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Revisr] Errors and a quick question](https://wordpress.org/support/topic/errors-and-a-quick-question/)
 *  Thread Starter [Dan Griffiths](https://wordpress.org/support/users/ghost1227/)
 * (@ghost1227)
 * [12 years ago](https://wordpress.org/support/topic/errors-and-a-quick-question/#post-5043777)
 * Happens both on a local Windows machine running Desktop Server and on an actual
   server running CentOS 6 with a standard LAMP stack. The issues, however, are 
   not environment related. The first issue is in the current_branch() function 
   which is called on init during the constructor. The content of current_branch()
   ran a single command:
 * $output = git(“rev-parse –abbrev-ref HEAD”);
 * before returning the 0 index of $output. However, $output isn’t definable is 
   git hasn’t yet been configured. As such, it throws the undefined offset error.
   The solution is to tweak the return as such:
 * return ( isset( $output[0] ) ? $output[0] : false );
 * This only returns the 0 index if its present, otherwise simply returns false.
 * Haven’t tracked down the second issue, but I’ll let you know when I do.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Revisr] Errors and a quick question](https://wordpress.org/support/topic/errors-and-a-quick-question/)
 *  Thread Starter [Dan Griffiths](https://wordpress.org/support/users/ghost1227/)
 * (@ghost1227)
 * [12 years ago](https://wordpress.org/support/topic/errors-and-a-quick-question/#post-5043703)
 * Also, throws the following on branch creation:
 * Warning: call_user_func_array() expects parameter 1 to be a valid callback, class‘
   Revisr’ does not have a method ‘create_branch’ in wp-includes\plugin.php on line
   470
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Digital Downloads - CSV Manager] Import/Export Menu Links](https://wordpress.org/support/topic/importexport-menu-links/)
 *  [Dan Griffiths](https://wordpress.org/support/users/ghost1227/)
 * (@ghost1227)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/importexport-menu-links/#post-4879450)
 * Should be fixed… try it now
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Username Changer] Works perfectly! (Except on WP Multisites)](https://wordpress.org/support/topic/works-perfectly-120/)
 *  [Dan Griffiths](https://wordpress.org/support/users/ghost1227/)
 * (@ghost1227)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/works-perfectly-120/#post-7774872)
 * Hey Gary!
 * Sorry it took so long, but Multisite is now fully supported! Super Admin usernames
   can only be changed from the Network Dashboard (the option to change them doesn’t
   even show up on individual sites), and the Super Admin permission is carried 
   over correctly. The only downside is that it has to be network activated for 
   this to work.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Username Changer] sanitize_user hook](https://wordpress.org/support/topic/sanitize_user-hook/)
 *  [Dan Griffiths](https://wordpress.org/support/users/ghost1227/)
 * (@ghost1227)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/sanitize_user-hook/#post-4285469)
 * Sorry for the delay, it does now though!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Username Changer] lillte bug (and solution) with change user_nicename](https://wordpress.org/support/topic/lillte-bug-and-solution-with-change-user_nicename/)
 *  [Dan Griffiths](https://wordpress.org/support/users/ghost1227/)
 * (@ghost1227)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/lillte-bug-and-solution-with-change-user_nicename/#post-4077459)
 * Sorry for the LONG delay… this is now fixed.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[bbPress Forum Redirect] Does not work](https://wordpress.org/support/topic/does-not-work-193/)
 *  [Dan Griffiths](https://wordpress.org/support/users/ghost1227/)
 * (@ghost1227)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/does-not-work-193/#post-4325626)
 * Just pushed a major update that included a complete rewrite of the meta box save
   function. Please try now and see if it works.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[bbPress Forum Redirect] Does not work](https://wordpress.org/support/topic/does-not-work-193/)
 *  [Dan Griffiths](https://wordpress.org/support/users/ghost1227/)
 * (@ghost1227)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/does-not-work-193/#post-4325625)
 * Does it display an error? Or just fail to save for you?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Digital Downloads - CSV Manager] Use of undefined constant EDD_VERSION – assumed 'EDD_VERSION'](https://wordpress.org/support/topic/use-of-undefined-constant-edd_version-assumed-edd_version/)
 *  [Dan Griffiths](https://wordpress.org/support/users/ghost1227/)
 * (@ghost1227)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/use-of-undefined-constant-edd_version-assumed-edd_version/#post-4259315)
 * This issue should now be resolved.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Redux Framework] Top notch work!](https://wordpress.org/support/topic/top-notch-work/)
 *  [Dan Griffiths](https://wordpress.org/support/users/ghost1227/)
 * (@ghost1227)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/top-notch-work/#post-7803894)
 * Thanks for the praise! We do try to be on top of any issues that crop up… we 
   use Redux for our own projects too!
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Redux Framework] The best options framework. Period.](https://wordpress.org/support/topic/the-best-options-framework-period/)
 *  [Dan Griffiths](https://wordpress.org/support/users/ghost1227/)
 * (@ghost1227)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/the-best-options-framework-period/#post-7804281)
 * Thanks! We certainly try to “get” what people want! If you can think of anything
   we can do to make your life even easier please feel free to let us know!
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Username Changer] SQL Vulnerabilities](https://wordpress.org/support/topic/sql-vulnerabilities/)
 *  [Dan Griffiths](https://wordpress.org/support/users/ghost1227/)
 * (@ghost1227)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/sql-vulnerabilities/#post-7735990)
 * Thanks to this review, the referenced issue has been fixed
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Username Changer] SQL Injection Vulnerabilities](https://wordpress.org/support/topic/sql-injection-vulnerabilities-1/)
 *  [Dan Griffiths](https://wordpress.org/support/users/ghost1227/)
 * (@ghost1227)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/sql-injection-vulnerabilities-1/#post-3323304)
 * Thanks for the quick re-approval Pippin!

Viewing 15 replies - 1 through 15 (of 99 total)

1 [2](https://wordpress.org/support/users/ghost1227/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/ghost1227/replies/page/3/?output_format=md)…
[5](https://wordpress.org/support/users/ghost1227/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/ghost1227/replies/page/6/?output_format=md)
[7](https://wordpress.org/support/users/ghost1227/replies/page/7/?output_format=md)
[→](https://wordpress.org/support/users/ghost1227/replies/page/2/?output_format=md)