Skip to content

Commit

Permalink
Rename library image to external image
Browse files Browse the repository at this point in the history
  • Loading branch information
dasgarner committed Sep 23, 2015
1 parent ac3298a commit 3dc4468
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions install/database/120.sql
Expand Up @@ -424,6 +424,7 @@ UPDATE `setting` SET `options` = 'private|group|public' WHERE `setting`.`set
UPDATE `setting` SET `options` = 'private|group|public' WHERE `setting`.`setting` = 'LAYOUT_DEFAULT';

INSERT INTO `datatype` (`DataTypeID`, `DataType`) VALUES ('5', 'Library Image');
UPDATE `datatype` SET `DataType` = 'External Image' WHERE `datatype`.`DataTypeID` =4 AND `datatype`.`DataType` = 'Image' LIMIT 1 ;

UPDATE `version` SET `app_ver` = '1.8.0-alpha', `XmdsVersion` = 4, `XlfVersion` = 2;
UPDATE `setting` SET `value` = 0 WHERE `setting` = 'PHONE_HOME_DATE';
Expand Down
2 changes: 1 addition & 1 deletion install/master/data.sql
Expand Up @@ -238,7 +238,7 @@ INSERT INTO `datatype` (`DataTypeID`, `DataType`) VALUES
(1, 'String'),
(2, 'Number'),
(3, 'Date'),
(4, 'Image'),
(4, 'External Image'),
(5, 'Library Image');

INSERT INTO `datasetcolumntype` (`DataSetColumnTypeID`, `DataSetColumnType`) VALUES
Expand Down
2 changes: 1 addition & 1 deletion locale/dbtranslate.php
Expand Up @@ -146,7 +146,7 @@
echo __('String');
echo __('Number');
echo __('Date');
echo __('Image');
echo __('External Image');
echo __('Library Image');

echo __('Value');
Expand Down

0 comments on commit 3dc4468

Please sign in to comment.