View | Details | Raw Unified | Return to bug 6874
Collapse All | Expand All

(-)a/cataloguing/value_builder/upload.pl (-1 / +2 lines)
Lines 49-55 sub plugin_javascript { Link Here
49
            if(id.match(/id=([0-9a-f]+)/)){
49
            if(id.match(/id=([0-9a-f]+)/)){
50
                id = RegExp.\$1;
50
                id = RegExp.\$1;
51
            }
51
            }
52
            window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=upload.pl&index=\"+index+\"&id=\"+id, 'upload', 'width=600,height=400,toolbar=false,scrollbars=no');
52
            var newin=window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=upload.pl&index=\"+index+\"&id=\"+id, 'upload', 'width=600,height=400,toolbar=false,scrollbars=no');
53
            newin.focus();
53
54
54
        }
55
        }
55
    </script>
56
    </script>
(-)a/installer/data/mysql/kohastructure.sql (-1 / +2 lines)
Lines 3198-3209 CREATE TABLE IF NOT EXISTS `borrower_modifications` ( Link Here
3198
  PRIMARY KEY (`verification_token`,`borrowernumber`),
3198
  PRIMARY KEY (`verification_token`,`borrowernumber`),
3199
  KEY `verification_token` (`verification_token`),
3199
  KEY `verification_token` (`verification_token`),
3200
  KEY `borrowernumber` (`borrowernumber`)
3200
  KEY `borrowernumber` (`borrowernumber`)
3201
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
3201
3202
3202
--
3203
--
3203
-- Table structure for table uploaded_files
3204
-- Table structure for table uploaded_files
3204
--
3205
--
3205
3206
3206
DROP TABLE IF EXISTS uploaded_files
3207
DROP TABLE IF EXISTS uploaded_files;
3207
CREATE TABLE uploaded_files (
3208
CREATE TABLE uploaded_files (
3208
    id CHAR(40) NOT NULL PRIMARY KEY,
3209
    id CHAR(40) NOT NULL PRIMARY KEY,
3209
    filename TEXT NOT NULL,
3210
    filename TEXT NOT NULL,
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/upload_delete_file.tt (-2 / +1 lines)
Lines 4-10 Link Here
4
<head>
4
<head>
5
    <title>Upload plugin</title>
5
    <title>Upload plugin</title>
6
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7
    <script type="text/javascript" src="[% themelang %]/lib/jquery/jquery.js"></script>
7
    <script type="text/javascript" src="[% interface %]/lib/jquery/jquery.js"></script>
8
    <link rel="stylesheet" type="text/css" href="[% themelang %]/css/staff-global.css" />
8
    <link rel="stylesheet" type="text/css" href="[% themelang %]/css/staff-global.css" />
9
    <script type="text/javascript">
9
    <script type="text/javascript">
10
        //<![CDATA[
10
        //<![CDATA[
11
- 

Return to bug 6874