Review plugin name / user-agent / text domain, etc.

Issue #32 closed
Drew Angell repo owner created an issue

Since I had to use /paypal-ipn as the plugin name instead of /paypal-ipn-for-wordpress, we need to double check areas where the longer name was used and update it if necessary.

For example, I see areas in the plugin where we're setting a "user-agent" value like this...

$params = array(
    'body' => $posted,
    'sslverify' => false,
    'timeout' => 60,
    'httpversion' => '1.1',
    'compress' => false,
    'decompress' => false,
    'user-agent' => 'paypal-ipn-for-wordpress/'
);

I'm not sure if that should be updated to paypal-ipn/ or not..?? Same goes for text-domain settings, etc.

Comments (7)

  1. Drew Angell reporter

    Would it make sense to just go ahead and rename everything that was "paypal-ipn-for-wordpress" to "paypal-ipn" instead, or is that unnecessary?

  2. Log in to comment