function fb_canvas_url_outbound_alter(&$path, &$options, $original_path) {
// use $options['fb_url_alter'] = FALSE to suppress any alteration.
if ((isset($options['external']) && $options['external']) ||
- $options['fb_url_alter'] === FALSE) {
+ (isset($options['fb_url_alter']) && $options['fb_url_alter'] === FALSE)) {
return;
}
*/
function fb_url_outbound_alter(&$path, &$options, $original_path) {
if ((isset($options['external']) && $options['external']) ||
- $options['fb_url_alter'] === FALSE) {
+ (isset($options['fb_url_alter']) && $options['fb_url_alter'] === FALSE)) {
return;
}