Skip to content

Commit

Permalink
Working on the multilanguage capabilities - Editing survey properties
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/phpsurveyor@2088 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
c-schmitz committed Oct 10, 2006
1 parent e1b31ad commit 618167e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions admin/install/create-mysql.sql
Expand Up @@ -236,8 +236,7 @@ CREATE TABLE `prefix_surveys_languagesettings` (
`surveyls_email_confirm` TEXT NULL,
PRIMARY KEY (`surveyls_survey_id`, `surveyls_language`)
)
TYPE = MyISAM
CHARACTER SET utf8 COLLATE utf8_general_ci;
TYPE = MyISAM CHARACTER SET utf8 COLLATE utf8_general_ci;



Expand Down Expand Up @@ -299,7 +298,7 @@ CREATE TABLE `prefix_settings_global` (
-- Table `settings_global`
--

INSERT INTO `prefix_settings_global` VALUES ('DBVersion', '109');
INSERT INTO `prefix_settings_global` VALUES ('DBVersion', '110');

--
-- Table `users`
Expand Down
3 changes: 1 addition & 2 deletions admin/install/upgrade-mysql.php
Expand Up @@ -36,8 +36,7 @@ function db_upgrade($oldversion) {
`surveyls_email_confirm` TEXT NULL,
PRIMARY KEY (`surveyls_survey_id`, `surveyls_language`)
)
TYPE = MyISAM
CHARACTER SET utf8 COLLATE utf8_general_ci;");
TYPE = MyISAM CHARACTER SET utf8 COLLATE utf8_general_ci;");
modify_database("","UPDATE `prefix_settings_global` SET stg_value='110' where stg_name ='DBVersion'");
}

Expand Down
2 changes: 1 addition & 1 deletion common.php
Expand Up @@ -2196,7 +2196,7 @@ function getAdminHeader()
. "<script type=\"text/javascript\" src=\"scripts/tabber/tabber.js\"></script>\n"
. "<script type=\"text/javascript\" src=\"scripts/tooltips.js\"></script>\n"
. "<link rel=\"stylesheet\" type=\"text/css\" media=\"all\" href=\"../scripts/calendar/calendar-blue.css\" title=\"win2k-cold-1\" />\n"
. "<link rel=\"stylesheet\" type=\"text/css\" href=\"scripts/tabber/tabber.css\">\n"
// . "<link rel=\"stylesheet\" type=\"text/css\" href=\"scripts/tabber/tabber.css\">\n"
. "<link rel=\"stylesheet\" type=\"text/css\" href=\"styles/default/adminstyle.css\">\n";

// This prevents a lasting javascripterror in the application
Expand Down

0 comments on commit 618167e

Please sign in to comment.