I have installed and enabled Salsa_API (beta2). However, when I install Salsa Entity (tried both beta3 and dev) and enable it, it tanks the site and I get the PHP error below.

PHP Parse error: syntax error, unexpected ':' in /public_html/sites/all/modules/salsa_entity/salsa_entity.inc on line 95.

Please advise.

Comments

codewatson’s picture

Issue summary: View changes

Check your version of php, the line in question:

$original_id = array_search($id, $this->mappings) ?: $id;

Uses a shorthand version of an If/Else statement, and that particular shorthand (only providing the else) is only available in PHP 5.3 or above, you are most likely running PHP 5.2.