Never been to TextSnippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)

About this user

Scott

« Newer Snippets
Older Snippets »
1 total  XML / RSS feed 

Wheels of Justice Changes

// description of your code here

In actions.module

Changed
/**
 * Callback function for array_filter in actions_list()
 */
function _actions_isaction($s) {
  return substr($s, 0, 7) == 'action_';
}

include_once('actions.inc');


To:
/**
 * Callback function for array_filter in actions_list()
 */
function _actions_isaction($s) {
  return substr($s, 0, 7) == 'action_';
}

include_once('/var/www/vhosts/somebodypinchme.net/subdomains/wheels/httpdocs/modules/actions/actions.inc');
« Newer Snippets
Older Snippets »
1 total  XML / RSS feed