Revision 1756
Added by Luisehahne about 13 years ago
| branches/2.8.x/CHANGELOG | ||
|---|---|---|
| 13 | 13 |
|
| 14 | 14 |
|
| 15 | 15 |
|
| 16 |
15 Sep-2012 Build 1756 Dietmar Woellbrink (Luisehahne) |
|
| 17 |
! update wysiwyg install.php, now using methode SqlImport from WBDatabase |
|
| 16 | 18 |
15 Sep-2012 Build 1755 Dietmar Woellbrink (Luisehahne) |
| 17 | 19 |
! update upgrade-script, see Revsion 1735 |
| 18 | 20 |
15 Sep-2012 Build 1754 Dietmar Woellbrink (Luisehahne) |
| branches/2.8.x/wb/admin/interface/version.php | ||
|---|---|---|
| 51 | 51 |
|
| 52 | 52 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
| 53 | 53 |
if(!defined('VERSION')) define('VERSION', '2.8.3');
|
| 54 |
if(!defined('REVISION')) define('REVISION', '1755');
|
|
| 54 |
if(!defined('REVISION')) define('REVISION', '1756');
|
|
| 55 | 55 |
if(!defined('SP')) define('SP', '');
|
| branches/2.8.x/wb/modules/wysiwyg/sql/mod_wysiwyg.sql | ||
|---|---|---|
| 1 |
-- phpMyAdmin SQL Dump |
|
| 2 |
-- version 3.4.5 |
|
| 3 |
-- http://www.phpmyadmin.net |
|
| 4 |
-- |
|
| 5 |
-- Host: localhost |
|
| 6 |
-- Erstellungszeit: 15. Sep 2012 um 21:37 |
|
| 7 |
-- Server Version: 5.5.16 |
|
| 8 |
-- PHP-Version: 5.3.8 |
|
| 9 |
|
|
| 10 |
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; |
|
| 11 |
SET time_zone = "+00:00"; |
|
| 12 |
|
|
| 13 |
|
|
| 14 |
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; |
|
| 15 |
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; |
|
| 16 |
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; |
|
| 17 |
/*!40101 SET NAMES utf8 */; |
|
| 18 |
|
|
| 19 |
-- -------------------------------------------------------- |
|
| 20 |
|
|
| 21 |
-- |
|
| 22 |
-- Tabellenstruktur für Tabelle `mod_wysiwyg` |
|
| 23 |
-- |
|
| 24 |
|
|
| 25 |
DROP TABLE IF EXISTS `{TABLE_PREFIX}mod_wysiwyg`;
|
|
| 26 |
CREATE TABLE IF NOT EXISTS `{TABLE_PREFIX}mod_wysiwyg` (
|
|
| 27 |
`wysiwyg_id` int(11) NOT NULL AUTO_INCREMENT, |
|
| 28 |
`section_id` int(11) NOT NULL DEFAULT '0', |
|
| 29 |
`page_id` int(11) NOT NULL DEFAULT '0', |
|
| 30 |
`content` longtext NOT NULL, |
|
| 31 |
`text` longtext NOT NULL, |
|
| 32 |
PRIMARY KEY (`wysiwyg_id`) |
|
| 33 |
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; |
|
| 34 |
|
|
| 35 |
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; |
|
| 36 |
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; |
|
| 37 |
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; |
|
| 0 | 38 | |
Also available in: Unified diff
! update wysiwyg install.php, now using methode SqlImport from WBDatabase