aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db/tools.php
diff options
context:
space:
mode:
authorjaviexin <javiexin@gmail.com>2015-04-27 15:35:09 +0200
committerjaviexin <javiexin@gmail.com>2015-04-27 15:35:09 +0200
commit18e8f281be21e241c50d7ed55a16475d222e144a (patch)
tree421f34cd6230aef6dd9de719691558283f51a71a /phpBB/phpbb/db/tools.php
parente98a5afd07fdd18c8ed877655089e842a1db5f8a (diff)
downloadforums-18e8f281be21e241c50d7ed55a16475d222e144a.tar
forums-18e8f281be21e241c50d7ed55a16475d222e144a.tar.gz
forums-18e8f281be21e241c50d7ed55a16475d222e144a.tar.bz2
forums-18e8f281be21e241c50d7ed55a16475d222e144a.tar.xz
forums-18e8f281be21e241c50d7ed55a16475d222e144a.zip
[ticket/13786] Add events to add MCP post options
Three new events are included: 1) Core event to perform new moderator action in includes/mcp/mcp_post.php 2) Core event to add/modify template data in includes/mcp/mcp_post.php 3) Template event to present new options in template/mcp_post.html Fix typo. PHPBB3-13786
Diffstat (limited to 'phpBB/phpbb/db/tools.php')
0 files changed, 0 insertions, 0 deletions
script>
authorChristophe Fergeau <cfergeau@mandriva.com>2009-01-22 16:21:27 +0000
committerChristophe Fergeau <cfergeau@mandriva.com>2009-01-22 16:21:27 +0000
commitc3b0a81f094a203a49a442fe8edb2825c52ac6b1 (patch)
tree5db7c2d753df0b4913422ad3a301ccf501819336 /images
parent348c5f4eb2015dd237187cdb8fe71a98c16cf128 (diff)
downloaddrakx-c3b0a81f094a203a49a442fe8edb2825c52ac6b1.tar
drakx-c3b0a81f094a203a49a442fe8edb2825c52ac6b1.tar.gz
drakx-c3b0a81f094a203a49a442fe8edb2825c52ac6b1.tar.bz2
drakx-c3b0a81f094a203a49a442fe8edb2825c52ac6b1.tar.xz
drakx-c3b0a81f094a203a49a442fe8edb2825c52ac6b1.zip
Syslinux 3.72 changes for the COM32 gfxboot module
Diffstat (limited to 'images')
-rw-r--r--images/NEWS3
-rwxr-xr-ximages/make_boot_img10
2 files changed, 11 insertions, 2 deletions
diff --git a/images/NEWS b/images/NEWS
index 8c30e1010..68814f588 100644
--- a/images/NEWS
+++ b/images/NEWS
@@ -1,3 +1,6 @@
+- images:
+ o adjust to new syslinux 3.72 gfxboot COM32 module
+
Version 1.32 - 15 January 2008, by Thierry Vignaud
- include:
diff --git a/images/make_boot_img b/images/make_boot_img
index 3b538365f..72229f2d6 100755
--- a/images/make_boot_img
+++ b/images/make_boot_img
@@ -118,9 +118,14 @@ display help.msg
implicit 1
EOF
my $header_gfxboot = <<EOF;
-gfxboot bootlogo
+default gfxboot
+timeout 0
+prompt 0
label harddisk
localboot 0x80
+label gfxboot
+ comboot gfxboot.com
+ append bootlogo
EOF
my $header_non_gfxboot = <<EOF;
F1 help.msg
@@ -745,7 +750,8 @@ sub boot_iso {
my $with_gfxboot = 0;
_ "cp /usr/share/gfxboot/themes/Mandriva/install/* .boot_iso/isolinux" if $with_gfxboot;
-# _ "cp /home/pixel/cooker/soft/theme/mandriva-gfxboot-theme/inst/* .boot_iso/isolinux" if $with_gfxboot;
+# _ "cp /home/pixel/cooker/soft/theme/mandriva-gfxboot-theme/inst/* .boot_iso/isolinux" if $with_gfxboot;
+ _ "cp /usr/lib/syslinux/gfxboot.com .boot_iso/isolinux/gfxboot.com" if $with_gfxboot;
output('.boot_iso/isolinux/isolinux.cfg', syslinux_cfg_all('', $with_gfxboot));