cacti 에 컬러 추가하기
html 코드에서 color 정렬을 hex 에서 id 값으로 변경하자
vi $cacti_home/color.php
수정 전 131 : $color_list = db_fetch_assoc("select * from colors order by hex"); |
수정 후 131 : $color_list = db_fetch_assoc("select * from colors order by id"); |
vi $cacti_home/lib/html_form.php
수정 전 370 : $colors_list = db_fetch_assoc("select id,hex from colors order by hex desc"); |
수정 후 370 : $colors_list = db_fetch_assoc("select id,hex from colors order by id"); |
db 중 color 테이블 에 색상을 추가하자
|
'기타' 카테고리의 다른 글
[excel] KB, MB, GB 바꾸기 (0) | 2013.05.09 |
---|---|
[etc] mac-address 에서 제조회사 구분하기 (0) | 2011.01.04 |
[window] ftp 로 업로드 하는 bat(배치파일) 만들기 (0) | 2010.09.08 |
[etc] excel 빈줄(빈칸) 지우기 (0) | 2010.05.27 |
[etc] torrent site (0) | 2010.05.01 |