| @@ -1,8 +1,8 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | /* |
| 3 | 3 | Plugin Name: Image Source Control |
| 4 | - Version: 1.3.4 | |
| 4 | + Version: 1.3.5 | |
| 5 | 5 | Plugin URI: http://webgilde.com/en/image-source-control/ |
| 6 | 6 | Description: The Image Source Control saves the source of an image, lists them and warns if it is missing. |
| 7 | 7 | Author: Thomas Maier |
| 8 | 8 | Author URI: http://www.webgilde.com/ |
| @@ -37,9 +37,9 @@ | ||
| 37 | 37 | header('HTTP/1.1 403 Forbidden'); |
| 38 | 38 | exit(); |
| 39 | 39 | } |
| 40 | 40 | |
| 41 | -define('ISCVERSION', '1.3.4'); | |
| 41 | +define('ISCVERSION', '1.3.5'); | |
| 42 | 42 | define('ISCNAME', 'Image Source Control'); |
| 43 | 43 | define('ISCTEXTDOMAIN', 'isc'); |
| 44 | 44 | define('ISCDIR', basename(dirname(__FILE__))); |
| 45 | 45 | define('ISCPATH', plugin_dir_path(__FILE__)); |
| @@ -46,9 +46,9 @@ | ||
| 46 | 46 | define('WEBGILDE', 'http://webgilde.com/en/image-source-control'); |
| 47 | 47 | |
| 48 | 48 | load_plugin_textdomain(ISCTEXTDOMAIN, false, dirname(plugin_basename(__FILE__)) . '/languages/'); |
| 49 | 49 | |
| 50 | -require_once(ISCPATH . '/isc.class.php'); | |
| 50 | +require_once(ISCPATH . 'isc.class.php'); | |
| 51 | 51 | |
| 52 | 52 | global $my_isc; |
| 53 | 53 | $my_isc = new ISC_CLASS(); |
| 54 | 54 | |